Last active
September 9, 2019 03:33
-
-
Save tvlooy/6e2579513ff8af35a16638f2749646cb to your computer and use it in GitHub Desktop.
Block ads by DNS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# "include: /etc/unbound/ad-blacklist.conf" in /var/unbound/etc/unbound.conf | |
# run this script as a daily cron | |
# | |
# The list URLs were taken from the pi-hole project. | |
# More experimental lists are at https://github.com/pi-hole/pi-hole/blob/master/adlists.default | |
TMPFILE=$( mktemp get_dns_blacklists-XXXXXXXXX ) | |
trap 'rm -f $TMPFILE; exit 1' EXIT KILL INT QUIT TERM | |
( | |
ftp -VM -o- https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts | grep ^0.0.0.0 | awk '{ print $2 }' | |
ftp -VM -o- http://mirror1.malwaredomains.com/files/justdomains | |
ftp -VM -o- http://sysctl.org/cameleon/hosts | grep ^127.0.0.1 | awk '{ print $2 }' | |
ftp -VM -o- https://zeustracker.abuse.ch/blocklist.php?download=domainblocklist | |
ftp -VM -o- https://s3.amazonaws.com/lists.disconnect.me/simple_tracking.txt | |
ftp -VM -o- https://s3.amazonaws.com/lists.disconnect.me/simple_ad.txt | |
ftp -VM -o- https://hosts-file.net/ad_servers.txt | grep ^127.0.0.1 | awk '{ print $2 }' | |
ftp -VM -o- https://raw.githubusercontent.com/quidsup/notrack/master/trackers.txt | awk '{ print $1 }' | |
) | tr -d "\r" | tr 'A-Z' 'a-z' | sed -e 's/\.$//' | grep -v -e '^#' | grep '\.' | sort -u | | |
while read domain; do | |
echo local-zone: \"$domain\" redirect | |
echo local-data: \"$domain. A 0.0.0.0\" | |
done > $TMPFILE | |
mv $TMPFILE /var/unbound/etc/ad-blacklist.conf | |
rcctl reload unbound |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@afresh1 thanks for the fork!