2014-09-26 14:28:44 +00:00
|
|
|
#!/bin/bash
|
2015-03-23 11:40:20 +00:00
|
|
|
# The Pi-hole now blocks over 90,000 ad domains
|
2014-09-26 14:28:44 +00:00
|
|
|
# Address to send ads to (the RPi)
|
2015-03-23 11:40:20 +00:00
|
|
|
piholeIP="192.168.1.110"
|
2015-02-17 19:52:54 +00:00
|
|
|
# Optionally, uncomment to automatically detect the address. Thanks Gregg
|
|
|
|
#piholeIP=$(ifconfig eth0 | awk '/inet addr/{print substr($2,6)}')
|
|
|
|
|
2014-09-26 14:28:44 +00:00
|
|
|
# Config file to hold URL rules
|
2015-03-23 11:40:20 +00:00
|
|
|
piholeDir='/etc/pihole/'
|
|
|
|
eventHorizion='/etc/dnsmasq.d/adList.conf'
|
|
|
|
|
|
|
|
|
|
|
|
whitelist=$piholeDir'whitelist.txt'
|
|
|
|
blacklist=$piholeDir'blacklist.txt'
|
2015-03-10 17:27:57 +00:00
|
|
|
|
|
|
|
# Create the pihole resource directory if it doesn't exist. Future files will be stored here
|
2015-03-23 11:40:20 +00:00
|
|
|
if [[ -d $piholeDir ]];then
|
2015-03-10 17:27:57 +00:00
|
|
|
:
|
|
|
|
else
|
|
|
|
echo "Forming pihole directory..."
|
2015-03-23 11:40:20 +00:00
|
|
|
sudo mkdir piholeDir
|
|
|
|
fi
|
|
|
|
|
|
|
|
tmpDir='/tmp/'
|
|
|
|
tmpAdList=$tmpDir'matter.pihole.txt'
|
|
|
|
tmpConf=$tmpDir'andLight.pihole.txt'
|
|
|
|
tmpWhiteList=$tmpDir'yang.pihole.txt'
|
|
|
|
tmpBlackList=$tmpDir'yin.pihole.txt'
|
|
|
|
|
|
|
|
|
|
|
|
echo -n "" > $tmpWhiteList
|
|
|
|
if [[ -f $whitelist ]];then
|
|
|
|
grep -vE "^\s*(#|$)" $whitelist | sed "s|$|\$|" > $tmpWhiteList
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo -n "" > $tmpBlackList
|
|
|
|
if [[ -f $blacklist ]];then
|
|
|
|
grep -vE "^\s*(#|$)" $blacklist > $tmpBlackList
|
2015-03-10 17:27:57 +00:00
|
|
|
fi
|
2014-09-26 14:28:44 +00:00
|
|
|
|
2015-02-17 19:52:54 +00:00
|
|
|
echo "Getting yoyo ad list..." # Approximately 2452 domains at the time of writing
|
2015-03-23 11:40:20 +00:00
|
|
|
curl -s -d mimetype=plaintext -d hostformat=unixhosts http://pgl.yoyo.org/adservers/serverlist.php? | sort > $tmpAdList
|
2015-02-17 19:52:54 +00:00
|
|
|
echo "Getting winhelp2002 ad list..." # 12985 domains
|
2015-03-23 11:40:20 +00:00
|
|
|
curl -s http://winhelp2002.mvps.org/hosts.txt | grep -v "#" | grep -v "127.0.0.1" | sed '/^$/d' | sed 's/\ /\\ /g' | awk '{print $2}' >> $tmpAdList
|
2015-02-17 19:52:54 +00:00
|
|
|
echo "Getting adaway ad list..." # 445 domains
|
2015-03-23 11:40:20 +00:00
|
|
|
curl -s https://adaway.org/hosts.txt | grep -v "#" | grep -v "::1" | sed '/^$/d' | sed 's/\ /\\ /g' | awk '{print $2}' | grep -v '^\\' | grep -v '\\$' >> $tmpAdList
|
2015-02-17 19:52:54 +00:00
|
|
|
echo "Getting hosts-file ad list..." # 28050 domains
|
2015-03-23 11:40:20 +00:00
|
|
|
curl -s http://hosts-file.net/.%5Cad_servers.txt | grep -v "#" | grep -v "::1" | sed '/^$/d' | sed 's/\ /\\ /g' | awk '{print $2}' | grep -v '^\\' | grep -v '\\$' >> $tmpAdList
|
2015-02-17 19:52:54 +00:00
|
|
|
echo "Getting malwaredomainlist ad list..." # 1352 domains
|
2015-03-23 11:40:20 +00:00
|
|
|
curl -s http://www.malwaredomainlist.com/hostslist/hosts.txt | grep -v "#" | sed '/^$/d' | sed 's/\ /\\ /g' | awk '{print $3}' | grep -v '^\\' | grep -v '\\$' >> $tmpAdList
|
2015-02-17 19:52:54 +00:00
|
|
|
echo "Getting adblock.gjtech ad list..." # 696 domains
|
2015-03-23 11:40:20 +00:00
|
|
|
curl -s http://adblock.gjtech.net/?format=unix-hosts | grep -v "#" | sed '/^$/d' | sed 's/\ /\\ /g' | awk '{print $2}' | grep -v '^\\' | grep -v '\\$' >> $tmpAdList
|
2015-02-17 19:52:54 +00:00
|
|
|
echo "Getting someone who cares ad list..." # 10600
|
2015-03-23 11:40:20 +00:00
|
|
|
curl -s http://someonewhocares.org/hosts/hosts | grep -v "#" | sed '/^$/d' | sed 's/\ /\\ /g' | grep -v '^\\' | grep -v '\\$' | awk '{print $2}' | grep -v '^\\' | grep -v '\\$' >> $tmpAdList
|
2015-02-17 19:52:54 +00:00
|
|
|
echo "Getting Mother of All Ad Blocks list..." # 102168 domains!! Thanks Kacy
|
2015-03-23 11:40:20 +00:00
|
|
|
curl -A 'Mozilla/5.0 (X11; Linux x86_64; rv:30.0) Gecko/20100101 Firefox/30.0' -e http://forum.xda-developers.com/ http://adblock.mahakala.is/ | grep -v "#" | awk '{print $2}' >> $tmpAdList
|
2014-09-26 14:28:44 +00:00
|
|
|
|
|
|
|
# Sort the aggregated results and remove any duplicates
|
2015-02-22 23:54:03 +00:00
|
|
|
# Remove entries from the whitelist file if it exists at the root of the current user's home folder
|
2015-03-23 11:40:20 +00:00
|
|
|
echo "Removing duplicates, whitelisting, and formatting the list of domains..."
|
|
|
|
grep -vhE "^\s*(#|$)" $tmpAdList $tmpBlackList |
|
|
|
|
sed $'s/\r$//'|
|
|
|
|
awk -F. '{for (i=NF; i>1; --i) printf "%s.",$i;print $1}'|
|
|
|
|
sort -t'.' -k1,2| uniq | grep -vwf $tmpWhiteList |
|
|
|
|
awk -F. 'NR!=1&&substr($0,0,length(p))==p{next} {p=$0".";for (i=NF; i>1; --i) printf "%s.",$i;print $1}'|
|
|
|
|
awk -v "IP=$piholeIP" '{sub(/\r$/,""); print "address=/"$0"/"IP}' > $tmpConf
|
|
|
|
numberOfSitesWhitelisted=$(cat $tmpWhiteList | wc -l | sed 's/^[ \t]*//')
|
|
|
|
numberOfSitesBlacklisted=$(cat $tmpBlackList | wc -l | sed 's/^[ \t]*//')
|
|
|
|
echo "$numberOfSitesWhitelisted domain(s) whitelisted, $numberOfSitesBlacklisted domain(s) blacklisted."
|
2015-02-17 19:52:54 +00:00
|
|
|
|
2015-02-22 23:54:03 +00:00
|
|
|
# Count how many domains/whitelists were added so it can be displayed to the user
|
2015-03-23 11:40:20 +00:00
|
|
|
numberOfAdsBlocked=$(cat $tmpConf | wc -l | sed 's/^[ \t]*//')
|
2015-02-22 23:54:03 +00:00
|
|
|
echo "$numberOfAdsBlocked ad domains blocked."
|
2015-02-17 19:52:54 +00:00
|
|
|
|
|
|
|
# Turn the file into a dnsmasq config file
|
2015-03-23 11:40:20 +00:00
|
|
|
sudo mv $tmpConf $eventHorizion
|
2014-09-26 14:28:44 +00:00
|
|
|
|
|
|
|
# Restart DNS
|
2015-03-12 11:37:41 +00:00
|
|
|
sudo service dnsmasq restart
|