Generates a host list of first-party trackers for ad-blocking.
https://hostfiles.frogeye.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
447 B
16 lines
447 B
#!/usr/bin/env bash
|
|
|
|
# Get a list of nameservers
|
|
|
|
rm -f nameservers
|
|
touch nameservers
|
|
[ -f nameservers.head ] && cat nameservers.head >> nameservers
|
|
curl https://public-dns.info/nameservers.txt | sort -R >> nameservers
|
|
|
|
# Get top 1M subdomains
|
|
|
|
wget http://s3-us-west-1.amazonaws.com/umbrella-static/top-1m.csv.zip
|
|
unzip top-1m.csv.zip
|
|
sed 's|^[0-9]\+,||' top-1m.csv > subdomains/cisco-umbrella_popularity.cache.list
|
|
rm top-1m.csv top-1m.csv.zip
|
|
|