mirror of
https://github.com/MISP/misp-galaxy.git
synced 2024-11-26 16:57:18 +00:00
Chg [groups] change name for Volt Typhoon duplicate
This commit is contained in:
parent
9e78c85124
commit
a88b3ced33
2 changed files with 6 additions and 1 deletions
|
@ -9947,7 +9947,7 @@
|
||||||
},
|
},
|
||||||
"related": [],
|
"related": [],
|
||||||
"uuid": "3290dcb9-5781-4b87-8fa0-6ae820e152cd",
|
"uuid": "3290dcb9-5781-4b87-8fa0-6ae820e152cd",
|
||||||
"value": "Volt Typhoon"
|
"value": "Volt Typhoon - Tidal"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"description": "<sup>[[Secureworks BRONZE SILHOUETTE May 2023](https://app.tidalcyber.com/references/77624549-e170-5894-9219-a15b4aa31726)]</sup>",
|
"description": "<sup>[[Secureworks BRONZE SILHOUETTE May 2023](https://app.tidalcyber.com/references/77624549-e170-5894-9219-a15b4aa31726)]</sup>",
|
||||||
|
|
|
@ -254,6 +254,11 @@ class GroupCluster(Cluster):
|
||||||
uuid=entry.get("id"),
|
uuid=entry.get("id"),
|
||||||
value=entry.get("name"),
|
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())
|
self.values.append(value.return_value())
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue