-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathfirebog.sh
56 lines (46 loc) · 1.85 KB
/
firebog.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
55
56
#!/bin/bash
# Uncomment the list type you want to use (script default is Non-crossed lists)
#
# Modify the comment to match your list selection type
#
# Information about the list types can be found here:
# https://v.firebog.net/hosts/lists.php
#
# WARNING: this script only adds new lists, it doesn't remove lists that are no longer in the selected firebog list(s)!
#
# 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
#
workdir="/home/pi"
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
#wget https://v.firebog.net/hosts/lists.php?type=tick -O $workdir/firebog.list
wget https://v.firebog.net/hosts/lists.php?type=nocross -O ${workdir}/firebog.list
#wget https://v.firebog.net/hosts/lists.php?type=all -O $workdir/firebog.list
comment="firebog nocross"
# remove quidsub lists (malformed)
sed -i '/quidsup/d' ${workdir}/firebog.list
timestamp=$(date +"%s")
while read nocross; do
sudo pihole-FTL sqlite3 "${gravitydb}" ".timeout = 2000" \
"insert or ignore into adlist \
(address, enabled, type) \
values ('${nocross}', 1, 0);"
done < ${workdir}/firebog.list
pihole restartdns reload-lists