2019-05-11 09:19:25 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2019-05-27 05:31:57 +00:00
|
|
|
set -e -x
|
|
|
|
|
2019-05-11 09:19:25 +00:00
|
|
|
## Parse malware URLs from popular URLhaus domains
|
|
|
|
|
2019-05-27 06:29:08 +00:00
|
|
|
cat URLhaus.txt | \
|
2019-05-12 03:15:23 +00:00
|
|
|
# Parse URLs from popular domains only
|
2019-05-11 09:19:25 +00:00
|
|
|
grep -F -f urlhaus-top-domains.txt > malware-url-top-domains.txt
|