mirror of
https://github.com/MISP/misp-galaxy.git
synced 2024-11-22 23:07:19 +00:00
7 lines
277 B
Bash
Executable file
7 lines
277 B
Bash
Executable file
#!/bin/bash
|
|
cd "${0%/*}"
|
|
wget -O malpedia.json https://malpedia.caad.fkie.fraunhofer.de/api/get/misp
|
|
mv malpedia.json ../clusters/malpedia.json
|
|
./del_duplicate_refs.py ../clusters/malpedia.json
|
|
./del_duplicate_uuids.py ../clusters/malpedia.json
|
|
(cd ..; ./jq_all_the_things.sh)
|