2023-12-28 18:14:28 -05:00
|
|
|
#!/bin/sh
|
|
|
|
#License: CC0
|
|
|
|
|
|
|
|
rm production/index.html
|
|
|
|
cp template.html production/index.html
|
|
|
|
echo "<pre>" >> production/index.html
|
|
|
|
sed -i "s/\[DATE\]/$(date -u)/" production/index.html
|
|
|
|
java -jar HypatiaDatabaseConverter-0.1__.jar raw/ >> production/index.html
|
|
|
|
echo "</pre>" >> production/index.html
|
2024-01-12 03:30:10 -05:00
|
|
|
cat extended.html >> production/index.html
|
2023-12-28 18:14:28 -05:00
|
|
|
mv raw/hypatia-*-bloom.bin production/
|
2024-01-25 21:03:49 -05:00
|
|
|
|
|
|
|
sed -s 'N;/md5: 0, sha1: 0, sha256: 0/!P;D' -i production/index.html
|
2024-04-11 21:04:55 -04:00
|
|
|
|
|
|
|
|
|
|
|
sed -r '/Skipping/{/virustotal/!s~[^ -~]{64}+~<a href="https://www.virustotal.com/gui/file/&" target="_blank" rel="nofollow noopener noreferrer">&</a>~}' -i production/index.html
|
|
|
|
sed -r '/Skipping/{/virustotal/!s~[^ -~]{40}+~<a href="https://www.virustotal.com/gui/file/&" target="_blank" rel="nofollow noopener noreferrer">&</a>~}' -i production/index.html
|
|
|
|
sed -r '/Skipping/{/virustotal/!s~[^ -~]{32}+~<a href="https://www.virustotal.com/gui/file/&" target="_blank" rel="nofollow noopener noreferrer">&</a>~}' -i production/index.html
|