2014-06-08 11:03:56 -04:00
|
|
|
#!/bin/bash
|
2015-05-19 14:31:37 -04:00
|
|
|
# http://pi-hole.net
|
2015-06-04 09:21:44 -04:00
|
|
|
# Compiles a list of ad-serving domains by downloading them from multiple sources
|
2014-06-08 11:03:56 -04:00
|
|
|
|
2015-06-13 23:01:12 -04:00
|
|
|
# This script should only be run after you have a static IP address set on the Pi
|
|
|
|
piholeIP=$(hostname -I)
|
|
|
|
|
2015-05-19 14:31:37 -04:00
|
|
|
# Ad-list sources--one per line in single quotes
|
|
|
|
sources=('https://adaway.org/hosts.txt'
|
|
|
|
'http://adblock.gjtech.net/?format=unix-hosts'
|
|
|
|
'http://adblock.mahakala.is/'
|
|
|
|
'http://hosts-file.net/.%5Cad_servers.txt'
|
|
|
|
'http://www.malwaredomainlist.com/hostslist/hosts.txt'
|
|
|
|
'http://pgl.yoyo.org/adservers/serverlist.php?'
|
|
|
|
'http://someonewhocares.org/hosts/hosts'
|
|
|
|
'http://winhelp2002.mvps.org/hosts.txt')
|
2014-06-08 11:03:56 -04:00
|
|
|
|
2015-05-19 14:31:37 -04:00
|
|
|
# Variables for various stages of downloading and formatting the list
|
2015-07-30 12:24:24 -04:00
|
|
|
adList=/etc/pihole/gravity.list
|
2015-06-07 00:34:32 -04:00
|
|
|
origin=/etc/pihole
|
2015-05-19 14:31:37 -04:00
|
|
|
piholeDir=/etc/pihole
|
2015-07-13 07:59:22 -04:00
|
|
|
if [[ -f $piholeDir/pihole.conf ]];then
|
2015-06-19 16:31:51 -04:00
|
|
|
. $piholeDir/pihole.conf
|
|
|
|
fi
|
2015-05-19 14:31:37 -04:00
|
|
|
justDomainsExtension=domains
|
|
|
|
matter=pihole.0.matter.txt
|
|
|
|
andLight=pihole.1.andLight.txt
|
|
|
|
supernova=pihole.2.supernova.txt
|
|
|
|
eventHorizon=pihole.3.eventHorizon.txt
|
|
|
|
accretionDisc=pihole.4.accretionDisc.txt
|
|
|
|
eyeOfTheNeedle=pihole.5.wormhole.txt
|
|
|
|
blacklist=$piholeDir/blacklist.txt
|
|
|
|
latentBlacklist=$origin/latentBlacklist.txt
|
|
|
|
whitelist=$piholeDir/whitelist.txt
|
|
|
|
latentWhitelist=$origin/latentWhitelist.txt
|
2014-06-08 11:03:56 -04:00
|
|
|
|
2015-05-19 14:31:37 -04:00
|
|
|
echo "** Neutrino emissions detected..."
|
2014-06-08 11:03:56 -04:00
|
|
|
|
2015-05-19 14:31:37 -04:00
|
|
|
# Create the pihole resource directory if it doesn't exist. Future files will be stored here
|
2015-06-13 23:01:12 -04:00
|
|
|
if [[ -d $piholeDir ]];then
|
2015-05-19 14:31:37 -04:00
|
|
|
:
|
|
|
|
else
|
|
|
|
echo "** Creating pihole directory..."
|
2015-06-13 23:01:12 -04:00
|
|
|
sudo mkdir $piholeDir
|
2015-05-19 14:31:37 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Loop through domain list. Download each one and remove commented lines (lines beginning with '# 'or '/') and blank lines
|
|
|
|
for ((i = 0; i < "${#sources[@]}"; i++))
|
|
|
|
do
|
|
|
|
# Get just the domain from the URL
|
|
|
|
domain=$(echo "${sources[$i]}" | cut -d'/' -f3)
|
|
|
|
|
|
|
|
# Save the file as list.#.domain
|
|
|
|
saveLocation=$origin/"list"."$i"."$domain"
|
|
|
|
|
|
|
|
# Use a case statement to download lists that need special cURL commands to complete properly
|
2015-07-13 07:59:22 -04:00
|
|
|
case "$domain" in
|
2015-06-04 09:21:44 -04:00
|
|
|
"adblock.mahakala.is") data=$(curl -s -A 'Mozilla/5.0 (X11; Linux x86_64; rv:30.0) Gecko/20100101 Firefox/30.0' -e http://forum.xda-developers.com/ -z $saveLocation."$justDomainsExtension" "${sources[$i]}");;
|
2015-05-19 14:31:37 -04:00
|
|
|
|
|
|
|
"pgl.yoyo.org") data=$(curl -s -d mimetype=plaintext -d hostformat=hosts -z $saveLocation."$justDomainsExtension" "${sources[$i]}");;
|
|
|
|
|
|
|
|
*) data=$(curl -s -z $saveLocation."$justDomainsExtension" -A "Mozilla/10.0" "${sources[$i]}");;
|
|
|
|
esac
|
|
|
|
|
|
|
|
if [[ -n "$data" ]];then
|
|
|
|
echo "Getting $domain list..."
|
|
|
|
# Remove comments and print only the domain name
|
2015-06-04 09:21:44 -04:00
|
|
|
# Most of the lists downloaded are already in hosts file format but the spacing/formating is not contigious
|
|
|
|
# This helps with that and makes it easier to read
|
|
|
|
# It also helps with debugging so each stage of the script can be researched more in depth
|
2015-07-13 12:28:45 -04:00
|
|
|
echo "$data" | awk 'NF {if ($1 !~ "#") { if (NF>1) {print $2} else {print $1}}}' > $saveLocation."$justDomainsExtension"
|
2015-05-19 14:31:37 -04:00
|
|
|
else
|
|
|
|
echo "Skipping $domain list because it does not have any new entries..."
|
|
|
|
fi
|
|
|
|
done
|
2014-06-08 11:03:56 -04:00
|
|
|
|
2015-07-13 07:59:22 -04:00
|
|
|
# Find all files with the .domains extension and compile them into one file and remove CRs
|
2015-05-19 14:31:37 -04:00
|
|
|
echo "** Aggregating list of domains..."
|
2015-06-22 16:03:15 -04:00
|
|
|
find $origin/ -type f -name "*.$justDomainsExtension" -exec cat {} \; | tr -d '\r' > $origin/$matter
|
2015-05-19 14:31:37 -04:00
|
|
|
|
|
|
|
# Append blacklist entries if they exist
|
|
|
|
if [[ -f $blacklist ]];then
|
2015-07-17 21:49:03 -04:00
|
|
|
numberOf=$(cat $blacklist | sed '/^\s*$/d' | wc -l)
|
2015-05-19 14:31:37 -04:00
|
|
|
echo "** Blacklisting $numberOf domain(s)..."
|
2015-06-22 16:33:02 -04:00
|
|
|
cat $blacklist >> $origin/$matter
|
2014-06-08 11:03:56 -04:00
|
|
|
else
|
2015-05-19 14:31:37 -04:00
|
|
|
:
|
2014-06-08 11:03:56 -04:00
|
|
|
fi
|
2015-05-19 14:31:37 -04:00
|
|
|
|
|
|
|
function gravity_advanced()
|
|
|
|
###########################
|
|
|
|
{
|
2015-07-17 21:49:03 -04:00
|
|
|
numberOf=$(cat $origin/$andLight | sed '/^\s*$/d' | wc -l)
|
2015-05-19 14:31:37 -04:00
|
|
|
echo "** $numberOf domains being pulled in by gravity..."
|
|
|
|
# Remove carriage returns and preceding whitespace
|
|
|
|
cat $origin/$andLight | sed $'s/\r$//' | sed '/^\s*$/d' > $origin/$supernova
|
|
|
|
# Sort and remove duplicates
|
|
|
|
cat $origin/$supernova | sort | uniq > $origin/$eventHorizon
|
2015-07-17 21:49:03 -04:00
|
|
|
numberOf=$(cat $origin/$eventHorizon | sed '/^\s*$/d' | wc -l)
|
2015-05-19 14:31:37 -04:00
|
|
|
echo "** $numberOf unique domains trapped in the event horizon."
|
2015-06-13 23:01:12 -04:00
|
|
|
# Format domain list as "192.168.x.x domain.com"
|
2015-05-19 14:31:37 -04:00
|
|
|
echo "** Formatting domains into a HOSTS file..."
|
2015-06-13 23:01:12 -04:00
|
|
|
cat $origin/$eventHorizon | awk '{sub(/\r$/,""); print "'"$piholeIP"'" $0}' > $origin/$accretionDisc
|
2015-07-30 12:24:24 -04:00
|
|
|
# Copy the file over as /etc/pihole/gravity.list so dnsmasq can use it
|
2015-05-19 14:31:37 -04:00
|
|
|
sudo cp $origin/$accretionDisc $adList
|
2015-07-17 14:05:38 -04:00
|
|
|
kill -HUP $(pidof dnsmasq)
|
2015-05-19 14:31:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
# Whitelist (if applicable) then remove duplicates and format for dnsmasq
|
|
|
|
if [[ -f $whitelist ]];then
|
|
|
|
# Remove whitelist entries
|
2015-07-17 21:49:03 -04:00
|
|
|
numberOf=$(cat $whitelist | sed '/^\s*$/d' | wc -l)
|
2015-05-19 14:31:37 -04:00
|
|
|
echo "** Whitelisting $numberOf domain(s)..."
|
|
|
|
# Append a "$" to the end of each line so it can be parsed out with grep -w
|
|
|
|
echo -n "^$" > $latentWhitelist
|
|
|
|
awk -F '[# \t]' 'NF>0&&$1!="" {print $1"$"}' $whitelist > $latentWhitelist
|
|
|
|
cat $origin/$matter | grep -vwf $latentWhitelist > $origin/$andLight
|
|
|
|
gravity_advanced
|
|
|
|
else
|
|
|
|
cat $origin/$matter > $origin/$andLight
|
|
|
|
gravity_advanced
|
2015-06-19 16:31:51 -04:00
|
|
|
fi
|