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 domains from URLhaus excluding popular domains
|
|
|
|
|
2019-05-28 03:02:08 +00:00
|
|
|
cat urlhaus-domains.txt | \
|
|
|
|
grep -F -vf urlhaus-top-domains.txt > malware-domains.txt
|