mirror of
https://github.com/MISP/misp-galaxy.git
synced 2024-11-22 06:47:18 +00:00
17 lines
328 B
Python
Executable file
17 lines
328 B
Python
Executable file
#!/usr/bin/env python3
|
|
# coding=utf-8
|
|
"""
|
|
Tool to remove duplicates in cluster references
|
|
"""
|
|
import sys
|
|
import json
|
|
|
|
with open(sys.argv[1], 'r') as f:
|
|
data = json.load(f)
|
|
|
|
for c in data['values']:
|
|
c['meta']['refs'] = list(dict.fromkeys(c['meta']['refs']))
|
|
|
|
with open(sys.argv[1], 'w') as f:
|
|
json.dump(data, f)
|
|
|