mirror of
https://github.com/MaintainTeam/Hypatia.git
synced 2025-03-01 05:48:23 +03:00
6 lines
447 B
Bash
6 lines
447 B
Bash
#!/bin/bash
|
|
#License: GPLv3
|
|
#Description: Hypatia conversion script for https://bazaar.abuse.ch/export/csv/full/ (CC0)
|
|
grep -v "^#" full.csv | grep -e "\"apk\"" -e "\"application/x-executable\"" -e "\"application/x-sharedlib\"" | awk '{ print $3 } ' | sed 's/^"//' | sed 's/",$/:0:MB/' | sort -u > malware_bazaar.hsb;
|
|
grep -v "^#" full.csv | awk '{ print $3 } ' | sed 's/^"//' | sed 's/",$/:0:MB/' | sort -u > malware_bazaar-full.hsb;
|
|
gzip *.hsb;
|