-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathAdguardTeam.sh
executable file
·54 lines (47 loc) · 1.8 KB
/
AdguardTeam.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/bash
# https://github.com/AdguardTeam/cname-trackers
#
# This script will install jq (https://stedolan.github.io/jq/) on your system!
# Don't run the the script if you do NOT want this!
#
# If you want to report a problem with this script, do NOT create a topic on the pihole forum!
# Report the issue on https://github.com/jpgpi250/piholemanual/issues
#
gravitydb="/etc/pihole/gravity.db"
# eye candy / color
RED='\033[0;91m'
GREEN='\033[0;92m'
BLUE='\033[0;94m'
NC='\033[0m' # No Color
NOK=" [${RED}!${NC}] "
INFO=" [${BLUE}i${NC}] "
# This script will work for both v5 and v6, change the value to match your version.
# gravity database: pi-hole v5 - version = 15, v6 version = 19
dbversion=$(pihole-FTL sqlite3 "${gravitydb}" ".timeout = 2000" \
"SELECT value FROM 'info' \
WHERE property = 'version';")
if [[ "${dbversion}" != "19" ]]; then
echo -e "${NOK}This script was written for gravity database version 19 ${GREEN}(current version: ${dbversion})${NC}."
echo -e "${INFO}Open an issue on GitHub (https://github.com/jpgpi250/piholemanual/issues)."
exit
fi
which jq | grep -q 'jq'
if [ $? -eq 1 ]; then
sudo apt-get -y install jq
fi
file=/home/pi/cloaked-trackers.json
sudo wget https://raw.githubusercontent.com/AdguardTeam/cname-trackers/master/script/src/cloaked-trackers.json -O $file
IFS=[,]
while read line; do
domains=( ${line} )
for domain in "${domains[@]}"; do
if [ ! -z "$domain" ]; then
regex=(\\.\|^)${domain%.*}\\.${domain##*.}$
sudo pihole-FTL sqlite3 "${gravitydb}" ".timeout = 2000" \
"insert or ignore into domainlist \
(type, domain, enabled, comment) \
values (3, '$regex', 1, 'AdguardTeam CNAME list');"
fi
done
done < <(jq --raw-output "map(\"\(.domains)\")|.[]" < /home/pi/cloaked-trackers.json < ${file} | tr -d '[]"')
/usr/local/bin/pihole restartdns reload-lists