mirror of
https://github.com/MISP/misp-galaxy.git
synced 2024-11-23 15:27:18 +00:00
7 lines
226 B
Bash
7 lines
226 B
Bash
|
#!/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
|
||
|
(cd ..; ./jq_all_the_things.sh)
|