2024-02-23 11:14:00 +01:00
|
|
|
from dataclasses import dataclass, field, asdict
|
2024-02-23 14:54:25 +01:00
|
|
|
from typing import Type
|
2024-02-21 16:24:48 +01:00
|
|
|
import json
|
|
|
|
|
2024-02-23 11:25:07 +01:00
|
|
|
|
2024-02-23 11:14:00 +01:00
|
|
|
@dataclass
|
|
|
|
class Meta:
|
|
|
|
pass
|
|
|
|
|
2024-02-23 11:25:07 +01:00
|
|
|
|
2024-02-23 11:14:00 +01:00
|
|
|
@dataclass
|
2024-02-23 11:25:07 +01:00
|
|
|
class GroupsMeta(Meta):
|
2024-02-23 11:14:00 +01:00
|
|
|
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
|
|
|
|
|
2024-02-23 11:25:07 +01:00
|
|
|
|
2024-02-23 14:54:25 +01:00
|
|
|
@dataclass
|
|
|
|
class AssociatedGroupsMeta(Meta):
|
|
|
|
id: str = None
|
|
|
|
owner_id: str = None
|
|
|
|
owner: str = None
|
|
|
|
|
|
|
|
|
2024-02-23 11:14:00 +01:00
|
|
|
@dataclass
|
2024-02-23 11:25:07 +01:00
|
|
|
class SoftwareMeta(Meta):
|
2024-02-23 11:14:00 +01:00
|
|
|
source: str = None
|
|
|
|
type: str = None
|
|
|
|
software_attack_id: str = None
|
|
|
|
platforms: list = None
|
|
|
|
tags: list = None
|
|
|
|
owner: str = None
|
|
|
|
|
2024-02-23 11:25:07 +01:00
|
|
|
|
2024-02-23 14:54:25 +01:00
|
|
|
@dataclass
|
|
|
|
class AssociatedSoftwareMeta(Meta):
|
|
|
|
id: str = None
|
|
|
|
owner_id: str = None
|
|
|
|
owner: str = None
|
|
|
|
|
|
|
|
|
2024-02-23 11:14:00 +01:00
|
|
|
@dataclass
|
2024-02-23 11:25:07 +01:00
|
|
|
class TechniqueMeta(Meta):
|
2024-02-23 11:14:00 +01:00
|
|
|
source: str = None
|
|
|
|
platforms: list = None
|
|
|
|
tags: list = None
|
|
|
|
owner: str = None
|
|
|
|
|
2024-02-23 11:25:07 +01:00
|
|
|
|
2024-02-23 11:14:00 +01:00
|
|
|
@dataclass
|
2024-02-23 11:25:07 +01:00
|
|
|
class SubTechniqueMeta(Meta):
|
|
|
|
source: str = None
|
|
|
|
technique_attack_id: str = None
|
|
|
|
|
|
|
|
|
|
|
|
@dataclass
|
|
|
|
class TacticMeta(Meta):
|
2024-02-23 11:14:00 +01:00
|
|
|
source: str = None
|
|
|
|
tactic_attack_id: str = None
|
|
|
|
ordinal_position: int = None
|
|
|
|
tags: list = None
|
|
|
|
owner: str = None
|
|
|
|
|
2024-02-23 11:25:07 +01:00
|
|
|
|
2024-02-23 11:14:00 +01:00
|
|
|
@dataclass
|
2024-02-23 11:25:07 +01:00
|
|
|
class ReferencesMeta(Meta):
|
2024-02-23 11:14:00 +01:00
|
|
|
source: str = None
|
|
|
|
refs: list = None
|
|
|
|
title: str = None
|
|
|
|
author: str = None
|
|
|
|
date_accessed: str = None
|
|
|
|
date_published: str = None
|
|
|
|
owner: str = None
|
|
|
|
|
2024-02-23 11:25:07 +01:00
|
|
|
|
2024-02-23 11:14:00 +01:00
|
|
|
@dataclass
|
2024-02-23 11:25:07 +01:00
|
|
|
class CampaignsMeta(Meta):
|
2024-02-23 11:14:00 +01:00
|
|
|
source: str = None
|
|
|
|
campaign_attack_id: str = None
|
|
|
|
first_seen: str = None
|
|
|
|
last_seen: str = None
|
|
|
|
tags: list = None
|
|
|
|
owner: str = None
|
|
|
|
|
2024-02-23 11:25:07 +01:00
|
|
|
|
2024-02-23 11:14:00 +01:00
|
|
|
@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)
|
2024-02-23 11:25:07 +01:00
|
|
|
value_dict["meta"] = {
|
|
|
|
k: v for k, v in asdict(self.meta).items() if v is not None
|
|
|
|
}
|
2024-02-23 11:14:00 +01:00
|
|
|
return value_dict
|
|
|
|
|
2024-02-23 11:25:07 +01:00
|
|
|
|
|
|
|
class Cluster:
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
authors: str,
|
|
|
|
category: str,
|
|
|
|
description: str,
|
|
|
|
name: str,
|
|
|
|
source: str,
|
|
|
|
type: str,
|
|
|
|
uuid: str,
|
|
|
|
):
|
2024-02-21 16:24:48 +01:00
|
|
|
self.authors = authors
|
|
|
|
self.category = category
|
|
|
|
self.description = description
|
|
|
|
self.name = name
|
|
|
|
self.source = source
|
|
|
|
self.type = type
|
|
|
|
self.uuid = uuid
|
2024-02-23 11:14:00 +01:00
|
|
|
self.values = []
|
2024-02-23 14:54:25 +01:00
|
|
|
self.CLUSTER_PATH = "../../clusters"
|
2024-02-21 16:24:48 +01:00
|
|
|
|
2024-02-23 14:54:25 +01:00
|
|
|
def add_values(self, data: dict, meta_class: Type[Meta]):
|
|
|
|
pass
|
2024-02-23 11:25:07 +01:00
|
|
|
|
2024-02-21 16:24:48 +01:00
|
|
|
def save_to_file(self, path):
|
|
|
|
with open(path, "w") as file:
|
2024-02-23 11:14:00 +01:00
|
|
|
file.write(json.dumps(self.__dict__(), indent=4))
|
|
|
|
|
|
|
|
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,
|
|
|
|
}
|
2024-02-23 11:25:07 +01:00
|
|
|
|
2024-02-23 14:54:25 +01:00
|
|
|
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
|
|
|
|
|
2024-02-23 11:25:07 +01:00
|
|
|
|
2024-02-23 11:14:00 +01:00
|
|
|
class GroupCluster(Cluster):
|
2024-02-23 11:25:07 +01:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
authors: str,
|
|
|
|
category: str,
|
|
|
|
description: str,
|
|
|
|
name: str,
|
|
|
|
source: str,
|
|
|
|
type: str,
|
|
|
|
uuid: str,
|
2024-02-23 14:54:25 +01:00
|
|
|
enrichment: bool = False,
|
2024-02-23 11:25:07 +01:00
|
|
|
):
|
2024-02-23 11:14:00 +01:00
|
|
|
super().__init__(authors, category, description, name, source, type, uuid)
|
2024-02-23 14:54:25 +01:00
|
|
|
self.enrichment = enrichment
|
2024-02-23 11:25:07 +01:00
|
|
|
|
2024-02-23 11:14:00 +01:00
|
|
|
def add_values(self, data):
|
|
|
|
for entry in data["data"]:
|
|
|
|
meta = GroupsMeta(
|
|
|
|
source=entry.get("source"),
|
|
|
|
group_attack_id=entry.get("group_attack_id"),
|
2024-02-23 11:25:07 +01:00
|
|
|
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")
|
|
|
|
],
|
2024-02-23 11:14:00 +01:00
|
|
|
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 = []
|
2024-02-23 14:54:25 +01:00
|
|
|
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"):
|
2024-02-26 09:40:42 +01:00
|
|
|
associated_meta = AssociatedGroupsMeta(
|
2024-02-23 14:54:25 +01:00
|
|
|
id=associated_group.get("id"),
|
|
|
|
owner_id=associated_group.get("owner_id"),
|
|
|
|
owner=associated_group.get("owner_name"),
|
|
|
|
)
|
2024-02-26 09:40:42 +01:00
|
|
|
associated_related = []
|
|
|
|
associated_related.append(
|
|
|
|
{
|
|
|
|
"dest-uuid": entry.get("id"),
|
|
|
|
"type": "similar",
|
|
|
|
}
|
|
|
|
)
|
2024-02-23 14:54:25 +01:00
|
|
|
value = ClusterValue(
|
|
|
|
description=associated_group.get("description"),
|
2024-02-26 09:40:42 +01:00
|
|
|
meta=associated_meta,
|
|
|
|
related=associated_related,
|
2024-02-23 14:54:25 +01:00
|
|
|
uuid=associated_group.get("associated_group_id"),
|
|
|
|
value=associated_group.get("name"),
|
|
|
|
)
|
|
|
|
self.values.append(value.return_value())
|
2024-02-23 11:25:07 +01:00
|
|
|
related.append(
|
|
|
|
{
|
2024-02-23 14:54:25 +01:00
|
|
|
"dest-uuid": associated_group.get("associated_group_id"),
|
|
|
|
"type": "similar",
|
2024-02-23 11:25:07 +01:00
|
|
|
}
|
2024-02-23 11:14:00 +01:00
|
|
|
)
|
2024-02-23 14:54:25 +01:00
|
|
|
|
2024-02-23 11:14:00 +01:00
|
|
|
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):
|
2024-02-23 11:25:07 +01:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
authors: str,
|
|
|
|
category: str,
|
|
|
|
description: str,
|
|
|
|
name: str,
|
|
|
|
source: str,
|
|
|
|
type: str,
|
|
|
|
uuid: str,
|
2024-02-23 14:54:25 +01:00
|
|
|
enrichment: bool = False,
|
2024-02-23 11:25:07 +01:00
|
|
|
):
|
2024-02-23 11:14:00 +01:00
|
|
|
super().__init__(authors, category, description, name, source, type, uuid)
|
2024-02-23 14:54:25 +01:00
|
|
|
self.enrichment = enrichment
|
2024-02-23 11:25:07 +01:00
|
|
|
|
2024-02-23 11:14:00 +01:00
|
|
|
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"):
|
2024-02-23 11:25:07 +01:00
|
|
|
related.append(
|
|
|
|
{
|
|
|
|
"dest-uuid": relation.get("group_id"),
|
|
|
|
"type": "used-by",
|
|
|
|
}
|
2024-02-23 11:14:00 +01:00
|
|
|
)
|
2024-02-23 14:54:25 +01:00
|
|
|
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"):
|
2024-02-26 09:40:42 +01:00
|
|
|
associated_meta = AssociatedSoftwareMeta(
|
2024-02-23 14:54:25 +01:00
|
|
|
id=associated_software.get("id"),
|
|
|
|
owner_id=associated_software.get("owner_id"),
|
|
|
|
owner=associated_software.get("owner_name"),
|
|
|
|
)
|
2024-02-26 09:40:42 +01:00
|
|
|
associated_related = []
|
|
|
|
associated_related.append(
|
|
|
|
{
|
|
|
|
"dest-uuid": entry.get("id"),
|
|
|
|
"type": "similar",
|
|
|
|
}
|
|
|
|
)
|
2024-02-23 14:54:25 +01:00
|
|
|
value = ClusterValue(
|
|
|
|
description=associated_software.get("description"),
|
2024-02-26 09:40:42 +01:00
|
|
|
meta=associated_meta,
|
|
|
|
related=associated_related,
|
2024-02-23 14:54:25 +01:00
|
|
|
uuid=associated_software.get("associated_software_id"),
|
|
|
|
value=associated_software.get("name"),
|
|
|
|
)
|
|
|
|
self.values.append(value.return_value())
|
2024-02-23 11:25:07 +01:00
|
|
|
related.append(
|
|
|
|
{
|
2024-02-23 14:54:25 +01:00
|
|
|
"dest-uuid": associated_software.get("associated_software_id"),
|
|
|
|
"type": "similar",
|
2024-02-23 11:25:07 +01:00
|
|
|
}
|
2024-02-23 11:14:00 +01:00
|
|
|
)
|
2024-02-23 14:54:25 +01:00
|
|
|
|
2024-02-23 11:14:00 +01:00
|
|
|
value = ClusterValue(
|
|
|
|
description=entry.get("description"),
|
|
|
|
meta=meta,
|
|
|
|
related=related,
|
|
|
|
uuid=entry.get("id"),
|
|
|
|
value=entry.get("name"),
|
|
|
|
)
|
|
|
|
self.values.append(value.return_value())
|
|
|
|
|
2024-02-23 11:25:07 +01:00
|
|
|
|
2024-02-23 11:14:00 +01:00
|
|
|
class TechniqueCluster(Cluster):
|
2024-02-23 11:25:07 +01:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
authors: str,
|
|
|
|
category: str,
|
|
|
|
description: str,
|
|
|
|
name: str,
|
|
|
|
source: str,
|
|
|
|
type: str,
|
|
|
|
uuid: str,
|
|
|
|
):
|
2024-02-23 11:14:00 +01:00
|
|
|
super().__init__(authors, category, description, name, source, type, uuid)
|
2024-02-23 11:25:07 +01:00
|
|
|
|
2024-02-23 11:14:00 +01:00
|
|
|
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"):
|
2024-02-23 11:25:07 +01:00
|
|
|
related.append(
|
|
|
|
{
|
|
|
|
"dest-uuid": relation.get("tactic_id"),
|
|
|
|
"type": "uses",
|
|
|
|
}
|
2024-02-23 11:14:00 +01:00
|
|
|
)
|
|
|
|
|
2024-02-23 11:25:07 +01:00
|
|
|
for sub_technique in entry.get("sub_technique"):
|
2024-02-26 09:40:42 +01:00
|
|
|
sub_meta = SubTechniqueMeta(
|
2024-02-23 11:25:07 +01:00
|
|
|
source=sub_technique.get("source"),
|
|
|
|
technique_attack_id=sub_technique.get("technique_attack_id"),
|
|
|
|
)
|
2024-02-23 14:54:25 +01:00
|
|
|
sub_related = []
|
2024-02-23 11:25:07 +01:00
|
|
|
for relation in sub_technique.get("tactic"):
|
2024-02-23 14:54:25 +01:00
|
|
|
sub_related.append(
|
2024-02-23 11:25:07 +01:00
|
|
|
{
|
|
|
|
"dest-uuid": relation.get("tactic_id"),
|
|
|
|
"type": "uses",
|
|
|
|
}
|
|
|
|
)
|
2024-02-23 14:54:25 +01:00
|
|
|
sub_value = ClusterValue(
|
2024-02-23 11:25:07 +01:00
|
|
|
description=sub_technique.get("description"),
|
2024-02-26 09:40:42 +01:00
|
|
|
meta=sub_meta,
|
2024-02-23 14:54:25 +01:00
|
|
|
related=sub_related,
|
2024-02-23 11:25:07 +01:00
|
|
|
uuid=sub_technique.get("id"),
|
|
|
|
value=sub_technique.get("name"),
|
|
|
|
)
|
2024-02-23 14:54:25 +01:00
|
|
|
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,
|
|
|
|
related=related,
|
|
|
|
uuid=entry.get("id"),
|
|
|
|
value=entry.get("name"),
|
|
|
|
)
|
|
|
|
self.values.append(value.return_value())
|
2024-02-23 11:25:07 +01:00
|
|
|
|
|
|
|
|
2024-02-23 11:14:00 +01:00
|
|
|
class TacticCluster(Cluster):
|
2024-02-23 11:25:07 +01:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
authors: str,
|
|
|
|
category: str,
|
|
|
|
description: str,
|
|
|
|
name: str,
|
|
|
|
source: str,
|
|
|
|
type: str,
|
|
|
|
uuid: str,
|
|
|
|
):
|
2024-02-23 11:14:00 +01:00
|
|
|
super().__init__(authors, category, description, name, source, type, uuid)
|
2024-02-23 11:25:07 +01:00
|
|
|
|
2024-02-23 11:14:00 +01:00
|
|
|
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"):
|
2024-02-23 11:25:07 +01:00
|
|
|
related.append(
|
|
|
|
{
|
|
|
|
"dest-uuid": relation.get("technique_id"),
|
|
|
|
"type": "uses",
|
|
|
|
}
|
2024-02-23 11:14:00 +01:00
|
|
|
)
|
|
|
|
value = ClusterValue(
|
|
|
|
description=entry.get("description"),
|
|
|
|
meta=meta,
|
|
|
|
related=related,
|
|
|
|
uuid=entry.get("id"),
|
|
|
|
value=entry.get("name"),
|
|
|
|
)
|
|
|
|
self.values.append(value.return_value())
|
|
|
|
|
2024-02-23 11:25:07 +01:00
|
|
|
|
2024-02-23 11:14:00 +01:00
|
|
|
class ReferencesCluster(Cluster):
|
2024-02-23 11:25:07 +01:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
authors: str,
|
|
|
|
category: str,
|
|
|
|
description: str,
|
|
|
|
name: str,
|
|
|
|
source: str,
|
|
|
|
type: str,
|
|
|
|
uuid: str,
|
|
|
|
):
|
2024-02-23 11:14:00 +01:00
|
|
|
super().__init__(authors, category, description, name, source, type, uuid)
|
2024-02-23 11:25:07 +01:00
|
|
|
|
2024-02-23 11:14:00 +01:00
|
|
|
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())
|
|
|
|
|
2024-02-23 11:25:07 +01:00
|
|
|
|
2024-02-23 11:14:00 +01:00
|
|
|
class CampaignsCluster(Cluster):
|
2024-02-23 11:25:07 +01:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
authors: str,
|
|
|
|
category: str,
|
|
|
|
description: str,
|
|
|
|
name: str,
|
|
|
|
source: str,
|
|
|
|
type: str,
|
|
|
|
uuid: str,
|
|
|
|
):
|
2024-02-23 11:14:00 +01:00
|
|
|
super().__init__(authors, category, description, name, source, type, uuid)
|
2024-02-21 16:24:48 +01:00
|
|
|
|
2024-02-23 11:14:00 +01:00
|
|
|
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"),
|
|
|
|
)
|
2024-02-23 11:25:07 +01:00
|
|
|
self.values.append(value.return_value())
|