2023-04-21 13:25:09 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
cd ./feeds/circl/misp
|
|
|
|
wget -A .json -np -nH --cut-dirs=3 -m https://www.circl.lu/doc/misp/feed-osint/
|
|
|
|
rm manifest.json robots.txt.tmp
|
2024-04-05 12:15:17 +00:00
|
|
|
cd ../../../
|
2023-04-21 14:44:17 +00:00
|
|
|
mkdir ./feeds/circl/stix-2.1/
|
|
|
|
cd ./feeds/circl/stix-2.1/
|
2023-06-14 14:46:56 +00:00
|
|
|
ls -1 ../misp/*-*.json | parallel "misp_stix_converter export -v2.1 -f {}"
|
2023-05-19 08:38:34 +00:00
|
|
|
mmv -d "../misp/*.json.out" "#1.json"
|