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.
7 lines
308 B
7 lines
308 B
#!/usr/bin/env bash
|
|
|
|
# Get all subdomains accessed by each website in the website list
|
|
|
|
cat websites/*.list | sort -u > temp/all_websites.list
|
|
./collect_subdomains.py temp/all_websites.list > temp/subdomains_from_websites.list
|
|
sort -u temp/subdomains_from_websites.list > subdomains/from_websites.cache.list
|