Generates a host list of first-party trackers for ad-blocking.
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.
|
|
#!/usr/bin/env bash
# Filter out the subdomains not pointing to a first-party tracker
cat subdomains/*.list | sort -u > temp/all_subdomains.list ./filter_subdomains.py temp/all_subdomains.list > temp/all_toblock.list sort -u temp/all_toblock.list > dist/firstparty-trackers.txt
# Format the blocklist so it can be used as a hostlist
( echo "# First-party trackers" echo "# List generated on $(date -Isec) by eulaurarien $(git describe --tags --dirty)" cat dist/firstparty-trackers.txt | while read host; do echo "0.0.0.0 $host" done ) > dist/firstparty-trackers-hosts.txt
|