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