Hypatia/scripts/0eset.sh

20 lines
603 B
Bash
Raw Permalink Normal View History

2020-11-17 10:31:08 -05:00
#!/bin/bash
#License: CC0
2021-07-21 13:44:19 -04:00
#Description: Hypatia conversion script for https://github.com/eset/malware-ioc (BSD-2-Clause)
2020-11-17 10:31:08 -05:00
processHashes() {
local name=$(basename $1);
if [ -f $1/samples.$2 ]; then
dos2unix $1/samples.$2
while IFS= read -r line
do
echo "$line" >> ./eset.$2;
done < "$1/samples.$2";
fi;
}
export -f processHashes;
find . -maxdepth 2 -mindepth 1 -type d -exec bash -c 'processHashes "{}" md5 hdb' \;
find . -maxdepth 2 -mindepth 1 -type d -exec bash -c 'processHashes "{}" sha1 hsb' \;
find . -maxdepth 2 -mindepth 1 -type d -exec bash -c 'processHashes "{}" sha256 hsb' \;