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())