2015-11-11 08:43:00 +00:00
|
|
|
#!/usr/bin/env bash
|
2017-07-24 11:24:34 +00:00
|
|
|
# shellcheck disable=SC1090
|
|
|
|
|
2015-11-23 10:52:12 +00:00
|
|
|
# Pi-hole: A black hole for Internet advertisements
|
2017-02-22 17:55:20 +00:00
|
|
|
# (c) 2017 Pi-hole, LLC (https://pi-hole.net)
|
|
|
|
# Network-wide ad blocking via your own hardware.
|
|
|
|
#
|
2017-07-24 11:24:34 +00:00
|
|
|
# Usage: "pihole -g"
|
2015-11-06 23:03:55 +00:00
|
|
|
# Compiles a list of ad-serving domains by downloading them from multiple sources
|
2015-12-06 13:55:50 +00:00
|
|
|
#
|
2017-02-22 17:55:20 +00:00
|
|
|
# This file is copyright under the latest version of the EUPL.
|
|
|
|
# Please see LICENSE file for your rights under this license.
|
|
|
|
|
2017-06-21 11:49:05 +00:00
|
|
|
coltable="/opt/pihole/COL_TABLE"
|
2017-07-27 02:34:35 +00:00
|
|
|
source "${coltable}"
|
2016-04-11 10:29:14 +00:00
|
|
|
|
2017-07-24 11:24:34 +00:00
|
|
|
basename="pihole"
|
|
|
|
PIHOLE_COMMAND="/usr/local/bin/${basename}"
|
|
|
|
WHITELIST_COMMAND="${PIHOLE_COMMAND} -w"
|
2017-06-21 11:49:05 +00:00
|
|
|
|
2017-07-24 11:24:34 +00:00
|
|
|
piholeDir="/etc/${basename}"
|
|
|
|
piholeRepo="/etc/.${basename}"
|
|
|
|
|
|
|
|
adListFile="${piholeDir}/adlists.list"
|
|
|
|
adListDefault="${piholeDir}/adlists.default"
|
|
|
|
adListRepoDefault="${piholeRepo}/adlists.default"
|
2016-08-17 17:59:00 +00:00
|
|
|
|
2017-07-24 11:24:34 +00:00
|
|
|
whitelistFile="${piholeDir}/whitelist.txt"
|
|
|
|
blacklistFile="${piholeDir}/blacklist.txt"
|
|
|
|
wildcardFile="/etc/dnsmasq.d/03-pihole-wildcard.conf"
|
2016-01-21 22:14:55 +00:00
|
|
|
|
2017-07-24 11:24:34 +00:00
|
|
|
adList="${piholeDir}/gravity.list"
|
|
|
|
blackList="${piholeDir}/black.list"
|
|
|
|
localList="${piholeDir}/local.list"
|
2017-09-14 06:39:30 +00:00
|
|
|
VPNList="/etc/openvpn/ipp.txt"
|
2016-01-26 20:26:09 +00:00
|
|
|
|
2017-07-24 11:24:34 +00:00
|
|
|
domainsExtension="domains"
|
|
|
|
matterAndLight="${basename}.0.matterandlight.txt"
|
2017-07-27 02:34:35 +00:00
|
|
|
parsedMatter="${basename}.1.parsedmatter.txt"
|
|
|
|
whitelistMatter="${basename}.2.whitelistmatter.txt"
|
2017-07-24 11:24:34 +00:00
|
|
|
accretionDisc="${basename}.3.accretionDisc.txt"
|
2017-07-27 02:34:35 +00:00
|
|
|
preEventHorizon="list.preEventHorizon"
|
2017-07-24 11:24:34 +00:00
|
|
|
|
|
|
|
skipDownload="false"
|
|
|
|
|
|
|
|
# Source setupVars from install script
|
|
|
|
setupVars="${piholeDir}/setupVars.conf"
|
2017-06-21 11:49:05 +00:00
|
|
|
if [[ -f "${setupVars}" ]];then
|
2017-07-24 11:24:34 +00:00
|
|
|
source "${setupVars}"
|
|
|
|
|
|
|
|
# Remove CIDR mask from IPv4/6 addresses
|
|
|
|
IPV4_ADDRESS="${IPV4_ADDRESS%/*}"
|
|
|
|
IPV6_ADDRESS="${IPV6_ADDRESS%/*}"
|
2016-10-15 19:03:33 +00:00
|
|
|
else
|
2017-07-24 11:24:34 +00:00
|
|
|
echo -e " ${COL_LIGHT_RED}Installation Failure: ${setupVars} does not exist! ${COL_NC}
|
|
|
|
Please run 'pihole -r', and choose the 'reconfigure' option to fix."
|
2017-06-21 11:49:05 +00:00
|
|
|
exit 1
|
2016-10-15 19:03:33 +00:00
|
|
|
fi
|
|
|
|
|
2017-06-21 11:49:05 +00:00
|
|
|
# Warn users still using pihole.conf that it no longer has any effect
|
2017-07-24 11:24:34 +00:00
|
|
|
if [[ -r "${piholeDir}/pihole.conf" ]]; then
|
|
|
|
echo -e " ${COL_LIGHT_RED}Ignoring overrides specified within pihole.conf! ${COL_NC}"
|
2015-11-06 23:03:55 +00:00
|
|
|
fi
|
2015-11-26 23:48:52 +00:00
|
|
|
|
2017-08-28 01:36:02 +00:00
|
|
|
# Determine if DNS resolution is available before proceeding with retrieving blocklists
|
2017-07-27 02:34:35 +00:00
|
|
|
gravity_DNSLookup() {
|
2017-09-14 10:23:49 +00:00
|
|
|
local lookupDomain plural
|
2017-07-24 11:24:34 +00:00
|
|
|
|
2017-09-14 10:23:49 +00:00
|
|
|
# Determine which domain should be resolved
|
|
|
|
# "pi.hole" is not always available (e.g: new install), but FTL will not log it
|
2017-09-14 06:39:30 +00:00
|
|
|
if [[ -e "${localList}" ]]; then
|
|
|
|
lookupDomain="pi.hole"
|
|
|
|
else
|
|
|
|
lookupDomain="raw.githubusercontent.com"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Determine if domain can be resolved
|
2017-09-14 10:23:49 +00:00
|
|
|
if ! timeout 5 nslookup "${lookupDomain}" &> /dev/null; then
|
2017-07-27 02:34:35 +00:00
|
|
|
if [[ -n "${secs}" ]]; then
|
|
|
|
echo -e "${OVER} ${CROSS} DNS resolution is still unavailable, cancelling"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Determine error output message
|
2017-09-14 10:23:49 +00:00
|
|
|
if pidof dnsmasq &> /dev/null; then
|
2017-07-27 02:34:35 +00:00
|
|
|
echo -e " ${CROSS} DNS resolution is temporarily unavailable"
|
|
|
|
else
|
|
|
|
echo -e " ${CROSS} DNS service is not running"
|
|
|
|
"${PIHOLE_COMMAND}" restartdns
|
|
|
|
fi
|
|
|
|
|
2017-09-14 10:23:49 +00:00
|
|
|
# Give time for DNS server to be resolvable
|
2017-08-28 01:36:02 +00:00
|
|
|
secs="30"
|
2017-07-27 02:34:35 +00:00
|
|
|
while [[ "${secs}" -ne 0 ]]; do
|
2017-09-14 10:23:49 +00:00
|
|
|
plural=; [[ "${secs}" -ne 1 ]] && plural="s"
|
|
|
|
echo -ne "${OVER} ${INFO} Waiting $secs second${plural} before continuing..."
|
2017-07-27 02:34:35 +00:00
|
|
|
sleep 1
|
|
|
|
: $((secs--))
|
|
|
|
done
|
|
|
|
|
|
|
|
# Try again
|
|
|
|
gravity_DNSLookup
|
2017-08-28 01:36:02 +00:00
|
|
|
elif [[ -n "${secs}" ]]; then
|
|
|
|
# Print confirmation of resolvability if it had previously failed
|
|
|
|
echo -e "${OVER} ${TICK} DNS resolution is now available\\n"
|
2017-07-27 02:34:35 +00:00
|
|
|
fi
|
2017-07-24 11:24:34 +00:00
|
|
|
}
|
2017-03-31 18:16:09 +00:00
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
# Retrieve blocklist URLs and parse domains from adlists.list
|
2017-07-24 11:24:34 +00:00
|
|
|
gravity_Collapse() {
|
|
|
|
echo -e " ${INFO} Neutrino emissions detected..."
|
2017-03-31 18:16:09 +00:00
|
|
|
|
2017-07-24 11:24:34 +00:00
|
|
|
# Handle "adlists.list" and "adlists.default" files
|
2017-06-21 11:49:05 +00:00
|
|
|
if [[ -f "${adListDefault}" ]] && [[ -f "${adListFile}" ]]; then
|
2017-07-24 11:24:34 +00:00
|
|
|
# Remove superceded $adListDefault file
|
|
|
|
rm "${adListDefault}" 2> /dev/null || \
|
|
|
|
echo -e " ${CROSS} Unable to remove ${adListDefault}"
|
|
|
|
elif [[ ! -f "${adListFile}" ]]; then
|
2017-08-28 01:36:02 +00:00
|
|
|
# Create "adlists.list" by copying "adlists.default" from internal Pi-hole repo
|
2017-07-24 11:24:34 +00:00
|
|
|
cp "${adListRepoDefault}" "${adListFile}" 2> /dev/null || \
|
|
|
|
echo -e " ${CROSS} Unable to copy ${adListFile##*/} from ${piholeRepo}"
|
2017-03-31 18:16:09 +00:00
|
|
|
fi
|
|
|
|
|
2017-07-24 11:24:34 +00:00
|
|
|
local str="Pulling blocklist source list into range"
|
2017-06-21 11:49:05 +00:00
|
|
|
echo -ne " ${INFO} ${str}..."
|
|
|
|
|
2017-07-24 11:24:34 +00:00
|
|
|
# Retrieve source URLs from $adListFile
|
2017-09-14 10:23:49 +00:00
|
|
|
# Awk Logic: Remove comments (#@;![), CR (windows) line endings and empty lines
|
2017-07-24 11:24:34 +00:00
|
|
|
mapfile -t sources < <(awk '!/^[#@;!\[]/ {gsub(/\r$/, "", $0); if ($1) { print $1 } }' "${adListFile}" 2> /dev/null)
|
|
|
|
|
|
|
|
# Parse source domains from $sources
|
2017-08-28 01:36:02 +00:00
|
|
|
# Awk Logic: Split by folder/port, remove URL protocol & optional username:password@
|
2017-07-24 11:24:34 +00:00
|
|
|
mapfile -t sourceDomains < <(
|
|
|
|
awk -F '[/:]' '{
|
|
|
|
gsub(/(.*:\/\/|.*:.*@)/, "", $0)
|
|
|
|
print $1
|
|
|
|
}' <<< "$(printf '%s\n' "${sources[@]}")" 2> /dev/null
|
|
|
|
)
|
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
if [[ -n "${sources[*]}" ]] && [[ -n "${sourceDomains[*]}" ]]; then
|
2017-07-24 11:24:34 +00:00
|
|
|
echo -e "${OVER} ${TICK} ${str}"
|
|
|
|
else
|
|
|
|
echo -e "${OVER} ${CROSS} ${str}"
|
|
|
|
gravity_Cleanup "error"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
# Define options for when retrieving blocklists
|
|
|
|
gravity_Supernova() {
|
|
|
|
local url domain agent cmd_ext str
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
|
|
|
|
# Loop through $sources to download each one
|
|
|
|
for ((i = 0; i < "${#sources[@]}"; i++)); do
|
|
|
|
url="${sources[$i]}"
|
|
|
|
domain="${sourceDomains[$i]}"
|
|
|
|
|
|
|
|
# Save the file as list.#.domain
|
|
|
|
saveLocation="${piholeDir}/list.${i}.${domain}.${domainsExtension}"
|
|
|
|
activeDomains[$i]="${saveLocation}"
|
|
|
|
|
2017-08-28 01:36:02 +00:00
|
|
|
# Default user-agent (for Cloudflare's Browser Integrity Check: https://support.cloudflare.com/hc/en-us/articles/200170086-What-does-the-Browser-Integrity-Check-do-)
|
2017-07-27 02:34:35 +00:00
|
|
|
agent="Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36"
|
|
|
|
|
2017-08-28 01:36:02 +00:00
|
|
|
# Provide special commands for blocklists which may need them
|
2017-07-27 02:34:35 +00:00
|
|
|
case "${domain}" in
|
|
|
|
"pgl.yoyo.org") cmd_ext="-d mimetype=plaintext -d hostformat=hosts";;
|
|
|
|
*) cmd_ext="";;
|
|
|
|
esac
|
|
|
|
|
|
|
|
if [[ "${skipDownload}" == false ]]; then
|
|
|
|
str="Target: ${domain} (${url##*/})"
|
|
|
|
echo -e " ${INFO} ${str}"
|
|
|
|
|
|
|
|
gravity_Pull "${url}" "${cmd_ext}" "${agent}" "${str}"
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2017-09-14 10:23:49 +00:00
|
|
|
# Download specified URL and perform checks on HTTP status and file content
|
2017-07-27 02:34:35 +00:00
|
|
|
gravity_Pull() {
|
|
|
|
local url cmd_ext agent heisenbergCompensator patternBuffer str httpCode success
|
|
|
|
|
|
|
|
url="${1}"
|
|
|
|
cmd_ext="${2}"
|
|
|
|
agent="${3}"
|
|
|
|
|
|
|
|
# Store downloaded content to temp file instead of RAM
|
|
|
|
patternBuffer=$(mktemp)
|
2017-08-28 01:36:02 +00:00
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
heisenbergCompensator=""
|
|
|
|
if [[ -r "${saveLocation}" ]]; then
|
2017-09-14 10:23:49 +00:00
|
|
|
# Make curl determine if a remote file has been modified since last retrieval
|
|
|
|
# Uses "Last-Modified" header, which certain web servers do not provide (e.g: raw github links)
|
2017-07-27 02:34:35 +00:00
|
|
|
heisenbergCompensator="-z ${saveLocation}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
str="Status:"
|
|
|
|
echo -ne " ${INFO} ${str} Pending..."
|
|
|
|
# shellcheck disable=SC2086
|
|
|
|
httpCode=$(curl -s -L ${cmd_ext} ${heisenbergCompensator} -w "%{http_code}" -A "${agent}" "${url}" -o "${patternBuffer}" 2> /dev/null)
|
|
|
|
|
|
|
|
# Determine "Status:" output based on HTTP response
|
2017-08-28 01:36:02 +00:00
|
|
|
case "${httpCode}" in
|
2017-09-14 10:23:49 +00:00
|
|
|
"200") echo -e "${OVER} ${TICK} ${str} Retrieval successful"; success="true";;
|
|
|
|
"304") echo -e "${OVER} ${TICK} ${str} No changes detected"; success="true";;
|
|
|
|
"000") echo -e "${OVER} ${CROSS} ${str} Connection Refused"; success="false";;
|
|
|
|
"403") echo -e "${OVER} ${CROSS} ${str} Forbidden"; success="false";;
|
|
|
|
"404") echo -e "${OVER} ${CROSS} ${str} Not found"; success="false";;
|
|
|
|
"408") echo -e "${OVER} ${CROSS} ${str} Time-out"; success="false";;
|
|
|
|
"451") echo -e "${OVER} ${CROSS} ${str} Unavailable For Legal Reasons"; success="false";;
|
|
|
|
"521") echo -e "${OVER} ${CROSS} ${str} Web Server Is Down (Cloudflare)"; success="false";;
|
|
|
|
"522") echo -e "${OVER} ${CROSS} ${str} Connection Timed Out (Cloudflare)"; success="false";;
|
|
|
|
"500") echo -e "${OVER} ${CROSS} ${str} Internal Server Error"; success="false";;
|
|
|
|
* ) echo -e "${OVER} ${CROSS} ${str} ${httpCode}"; success="false";;
|
2017-07-27 02:34:35 +00:00
|
|
|
esac
|
|
|
|
|
|
|
|
# Determine if the blocklist was downloaded and saved correctly
|
|
|
|
if [[ "${success}" == "true" ]]; then
|
|
|
|
if [[ "${httpCode}" == "304" ]]; then
|
2017-09-14 10:23:49 +00:00
|
|
|
: # Do not attempt to re-parse file
|
|
|
|
# Check if $patternbuffer is a non-zero length file
|
2017-07-27 02:34:35 +00:00
|
|
|
elif [[ -s "${patternBuffer}" ]]; then
|
|
|
|
# Determine if blocklist is non-standard and parse as appropriate
|
|
|
|
gravity_ParseFileIntoDomains "${patternBuffer}" "${saveLocation}"
|
|
|
|
else
|
2017-09-14 10:23:49 +00:00
|
|
|
# Fall back to previously cached list if $patternBuffer is empty
|
2017-07-27 02:34:35 +00:00
|
|
|
echo -e " ${INFO} Received empty file: ${COL_LIGHT_GREEN}using previously cached list${COL_NC}"
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
# Determine if cached list exists
|
|
|
|
if [[ -r "${saveLocation}" ]]; then
|
|
|
|
echo -e " ${CROSS} List download failed: ${COL_LIGHT_GREEN}using previously cached list${COL_NC}"
|
|
|
|
else
|
|
|
|
echo -e " ${CROSS} List download failed: ${COL_LIGHT_RED}no cached list available${COL_NC}"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Delete temp file if it has not been moved
|
|
|
|
if [[ -f "${patternBuffer}" ]]; then
|
|
|
|
rm "${patternBuffer}" 2> /dev/null || \
|
|
|
|
echo -e " ${CROSS} Unable to remove ${patternBuffer}"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Parse non-standard source files into domains-only format
|
|
|
|
gravity_ParseFileIntoDomains() {
|
2017-09-14 10:23:49 +00:00
|
|
|
local source="${1}" destination="${2}" commentPattern firstLine abpFilter
|
2017-07-24 11:24:34 +00:00
|
|
|
|
|
|
|
# Determine how to parse source file
|
|
|
|
if [[ "${source}" == "${piholeDir}/${matterAndLight}" ]]; then
|
2017-07-27 02:34:35 +00:00
|
|
|
# Consolidated list parsing: Remove comments and hosts IP's
|
|
|
|
|
2017-08-28 01:36:02 +00:00
|
|
|
# Define symbols used as comments: #;@![/
|
2017-07-24 11:24:34 +00:00
|
|
|
commentPattern="[#;@![\\/]"
|
|
|
|
|
2017-08-28 01:36:02 +00:00
|
|
|
# Awk Logic: Process lines which do not begin with comments
|
2017-07-24 11:24:34 +00:00
|
|
|
awk '!/^'"${commentPattern}"'/ {
|
|
|
|
# If there are multiple words seperated by space
|
|
|
|
if (NF>1) {
|
2017-08-28 01:36:02 +00:00
|
|
|
# Remove comments (including prefixed spaces/tabs)
|
2017-07-27 02:34:35 +00:00
|
|
|
if ($0 ~ /'"${commentPattern}"'/) { gsub("( |\t)'"${commentPattern}"'.*", "", $0) }
|
2017-07-24 11:24:34 +00:00
|
|
|
# Print consecutive domains
|
|
|
|
if ($3) {
|
|
|
|
$1=""
|
2017-07-27 02:34:35 +00:00
|
|
|
# Remove space which is left in $0 when removing $1
|
2017-07-24 11:24:34 +00:00
|
|
|
gsub("^ ", "", $0)
|
|
|
|
print $0
|
|
|
|
# Print single domain
|
|
|
|
} else if ($2) {
|
|
|
|
print $2
|
|
|
|
}
|
2017-07-27 02:34:35 +00:00
|
|
|
# If there are no words seperated by space
|
2017-07-24 11:24:34 +00:00
|
|
|
} else if($1) {
|
|
|
|
print $1
|
|
|
|
}
|
|
|
|
}' "${source}" 2> /dev/null > "${destination}"
|
|
|
|
else
|
2017-07-27 02:34:35 +00:00
|
|
|
# Individual file parsing: Keep comments, while parsing domains from each line
|
2017-07-24 11:24:34 +00:00
|
|
|
read -r firstLine < "${source}"
|
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
# Determine how to parse individual source file formats
|
2017-08-28 01:36:02 +00:00
|
|
|
# Lists may not capitalise the first line correctly, so compare strings against lower case
|
2017-09-14 10:23:49 +00:00
|
|
|
if [[ "${firstLine,,}" =~ (adblock|ublock|!checksum) ]]; then
|
2017-08-28 01:36:02 +00:00
|
|
|
# Awk Logic: Parse Adblock domains & comments: https://adblockplus.org/filter-cheatsheet
|
2017-07-24 11:24:34 +00:00
|
|
|
abpFilter="/^(\\[|!)|^(\\|\\|.*\\^)/"
|
|
|
|
awk ''"${abpFilter}"' {
|
|
|
|
# Remove valid adblock type options
|
|
|
|
gsub(/~?(important|third-party|popup|subdocument|websocket),?/, "", $0)
|
|
|
|
# Remove starting domain name anchor "||" and ending seperator "^$" ($ optional)
|
|
|
|
gsub(/(\|\||\^\$?$)/, "", $0)
|
|
|
|
# Remove lines which are only IPv4 addresses or contain "^/*"
|
|
|
|
if ($0 ~ /(^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$|[\\^\/\*])/) { $0="" }
|
|
|
|
if ($0) { print $0 }
|
|
|
|
}' "${source}" 2> /dev/null > "${destination}"
|
2017-09-14 10:23:49 +00:00
|
|
|
# Parse URL list if source file contains http:// or IPv4
|
2017-07-27 02:34:35 +00:00
|
|
|
elif grep -q -E "^(https?://|([0-9]{1,3}\\.){3}[0-9]{1,3}$)" "${source}" &> /dev/null; then
|
2017-07-24 11:24:34 +00:00
|
|
|
awk '{
|
|
|
|
# Remove URL protocol, optional "username:password@", and ":?/;"
|
|
|
|
if ($0 ~ /[:?\/;]/) { gsub(/(^.*:\/\/(.*:.*@)?|[:?\/;].*)/, "", $0) }
|
|
|
|
# Remove lines which are only IPv4 addresses
|
|
|
|
if ($0 ~ /^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$/) { $0="" }
|
|
|
|
if ($0) { print $0 }
|
|
|
|
}' "${source}" 2> /dev/null > "${destination}"
|
2017-09-14 10:23:49 +00:00
|
|
|
# Parse Dnsmasq format lists
|
|
|
|
elif grep -q "^address=/" "${source}" &> /dev/null; then
|
|
|
|
awk -F/ '{
|
|
|
|
# Print comments
|
|
|
|
if ($0 ~ "#") {
|
|
|
|
print $0
|
|
|
|
# Print domains
|
|
|
|
} else if ($2) {
|
|
|
|
print $2
|
|
|
|
}
|
|
|
|
}' "${source}" 2> /dev/null > "${destination}"
|
2017-03-31 18:16:09 +00:00
|
|
|
else
|
2017-07-24 11:24:34 +00:00
|
|
|
# Keep hosts/domains file in same format as it was downloaded
|
|
|
|
output=$( { mv "${source}" "${destination}"; } 2>&1 )
|
|
|
|
status="$?"
|
|
|
|
|
|
|
|
if [[ "${status}" -ne 0 ]]; then
|
|
|
|
echo -e " ${CROSS} Unable to move tmp file to ${piholeDir}
|
|
|
|
${output}"
|
|
|
|
gravity_Cleanup "error"
|
|
|
|
fi
|
2017-03-31 18:16:09 +00:00
|
|
|
fi
|
2017-07-24 11:24:34 +00:00
|
|
|
fi
|
2015-11-23 08:36:01 +00:00
|
|
|
}
|
2015-11-23 07:49:38 +00:00
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
# Create unfiltered "Matter and Light" consolidated list
|
2017-07-24 11:24:34 +00:00
|
|
|
gravity_Schwarzschild() {
|
|
|
|
local str lastLine
|
|
|
|
|
|
|
|
str="Consolidating blocklists"
|
2017-06-21 11:49:05 +00:00
|
|
|
echo -ne " ${INFO} ${str}..."
|
2017-07-24 11:24:34 +00:00
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
# Empty $matterAndLight if it already exists, otherwise, create it
|
|
|
|
: > "${piholeDir}/${matterAndLight}"
|
|
|
|
|
2017-06-21 11:49:05 +00:00
|
|
|
for i in "${activeDomains[@]}"; do
|
|
|
|
# Only assimilate list if it is available (download might have failed permanently)
|
|
|
|
if [[ -r "${i}" ]]; then
|
2017-07-27 02:34:35 +00:00
|
|
|
# Compile all blacklisted domains into one file and remove CRs
|
2017-07-24 11:24:34 +00:00
|
|
|
tr -d '\r' < "${i}" >> "${piholeDir}/${matterAndLight}"
|
|
|
|
|
|
|
|
# Ensure each source blocklist has a final newline
|
|
|
|
lastLine=$(tail -1 "${piholeDir}/${matterAndLight}")
|
|
|
|
[[ "${#lastLine}" -gt 0 ]] && echo "" >> "${piholeDir}/${matterAndLight}"
|
2017-06-21 11:49:05 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
echo -e "${OVER} ${TICK} ${str}"
|
2015-11-26 23:48:52 +00:00
|
|
|
}
|
2015-05-19 18:31:37 +00:00
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
# Parse unfiltered consolidated blocklist into filtered domains-only format
|
|
|
|
gravity_Filter() {
|
|
|
|
local str num
|
2017-07-24 11:24:34 +00:00
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
str="Extracting domains from blocklists"
|
|
|
|
echo -ne " ${INFO} ${str}..."
|
|
|
|
|
2017-08-28 01:36:02 +00:00
|
|
|
# Parse into hosts file
|
2017-07-27 02:34:35 +00:00
|
|
|
gravity_ParseFileIntoDomains "${piholeDir}/${matterAndLight}" "${piholeDir}/${parsedMatter}"
|
|
|
|
|
2017-08-28 01:36:02 +00:00
|
|
|
# Format file line count as currency
|
2017-07-27 02:34:35 +00:00
|
|
|
num=$(printf "%'.0f" "$(wc -l < "${piholeDir}/${parsedMatter}")")
|
|
|
|
echo -e "${OVER} ${TICK} ${str}
|
|
|
|
${INFO} ${COL_LIGHT_BLUE}${num}${COL_NC} domains being pulled in by gravity"
|
|
|
|
|
|
|
|
gravity_Unique
|
2016-01-15 14:49:16 +00:00
|
|
|
}
|
2015-11-06 23:03:55 +00:00
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
# Sort and remove duplicate blacklisted domains
|
|
|
|
gravity_Unique() {
|
|
|
|
local str num
|
2017-07-24 11:24:34 +00:00
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
str="Removing duplicate domains"
|
|
|
|
echo -ne " ${INFO} ${str}..."
|
|
|
|
sort -u "${piholeDir}/${parsedMatter}" > "${piholeDir}/${preEventHorizon}"
|
|
|
|
echo -e "${OVER} ${TICK} ${str}"
|
|
|
|
|
2017-08-28 01:36:02 +00:00
|
|
|
# Format file line count as currency
|
2017-07-27 02:34:35 +00:00
|
|
|
num=$(printf "%'.0f" "$(wc -l < "${piholeDir}/${preEventHorizon}")")
|
|
|
|
echo -e " ${INFO} ${COL_LIGHT_BLUE}${num}${COL_NC} unique domains trapped in the Event Horizon"
|
2017-01-29 12:46:27 +00:00
|
|
|
}
|
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
# Whitelist blocklist domain sources
|
|
|
|
gravity_WhitelistBLD() {
|
|
|
|
local plural str uniqDomains
|
2017-07-24 11:24:34 +00:00
|
|
|
|
2017-06-21 11:49:05 +00:00
|
|
|
echo ""
|
2017-09-14 10:23:49 +00:00
|
|
|
plural=; [[ "${#sources[*]}" != "1" ]] && plural="s"
|
2017-07-24 11:24:34 +00:00
|
|
|
str="Adding blocklist source${plural} to the whitelist"
|
2017-06-21 11:49:05 +00:00
|
|
|
echo -ne " ${INFO} ${str}..."
|
|
|
|
|
2017-07-24 11:24:34 +00:00
|
|
|
# Create array of unique $sourceDomains
|
2017-09-14 07:09:52 +00:00
|
|
|
mapfile -t uniqDomains <<< "$(awk '{ if(!a[$1]++) { print $1 } }' <<< "$(printf '%s\n' "${sourceDomains[@]}")")"
|
2017-06-21 11:49:05 +00:00
|
|
|
|
2017-07-24 11:24:34 +00:00
|
|
|
${WHITELIST_COMMAND} -nr -q "${uniqDomains[*]}" > /dev/null
|
2017-06-21 11:49:05 +00:00
|
|
|
|
2017-07-24 11:24:34 +00:00
|
|
|
echo -e "${OVER} ${TICK} ${str}"
|
2017-07-27 02:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Whitelist user-defined domains
|
|
|
|
gravity_Whitelist() {
|
|
|
|
local plural str num
|
2017-06-21 11:49:05 +00:00
|
|
|
|
2017-07-24 11:24:34 +00:00
|
|
|
# Test existence of whitelist.txt
|
2017-06-21 11:49:05 +00:00
|
|
|
if [[ -f "${whitelistFile}" ]]; then
|
|
|
|
# Remove anything in whitelist.txt from the Event Horizon
|
2017-07-27 02:34:35 +00:00
|
|
|
num=$(wc -l < "${whitelistFile}")
|
2017-09-14 10:23:49 +00:00
|
|
|
plural=; [[ "${num}" -ne 1 ]] && plural="s"
|
2017-08-28 01:36:02 +00:00
|
|
|
str="Whitelisting ${num} domain${plural}"
|
2017-06-21 11:49:05 +00:00
|
|
|
echo -ne " ${INFO} ${str}..."
|
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
# Print everything from preEventHorizon into whitelistMatter EXCEPT domains in whitelist.txt
|
|
|
|
grep -F -x -v -f "${whitelistFile}" "${piholeDir}/${preEventHorizon}" > "${piholeDir}/${whitelistMatter}"
|
2017-06-21 11:49:05 +00:00
|
|
|
|
|
|
|
echo -e "${OVER} ${TICK} ${str}"
|
|
|
|
else
|
|
|
|
echo -e " ${INFO} Nothing to whitelist!"
|
|
|
|
fi
|
2015-11-23 09:16:00 +00:00
|
|
|
}
|
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
# Output count of blacklisted domains and wildcards
|
|
|
|
gravity_ShowBlockCount() {
|
|
|
|
local num plural str
|
2017-06-21 11:49:05 +00:00
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
if [[ -f "${blacklistFile}" ]]; then
|
|
|
|
num=$(printf "%'.0f" "$(wc -l < "${blacklistFile}")")
|
2017-09-14 10:23:49 +00:00
|
|
|
plural=; [[ "${num}" -ne 1 ]] && plural="s"
|
2017-07-27 02:34:35 +00:00
|
|
|
str="Exact blocked domain${plural}: ${num}"
|
|
|
|
echo -e " ${INFO} ${str}"
|
|
|
|
else
|
|
|
|
echo -e " ${INFO} Nothing to blacklist!"
|
|
|
|
fi
|
2017-07-24 11:24:34 +00:00
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
if [[ -f "${wildcardFile}" ]]; then
|
|
|
|
num=$(grep -c "^" "${wildcardFile}")
|
|
|
|
# If IPv4 and IPv6 is used, divide total wildcard count by 2
|
|
|
|
if [[ -n "${IPV4_ADDRESS}" ]] && [[ -n "${IPV6_ADDRESS}" ]];then
|
|
|
|
num=$(( num/2 ))
|
|
|
|
fi
|
2017-09-14 10:23:49 +00:00
|
|
|
plural=; [[ "${num}" -ne 1 ]] && plural="s"
|
2017-07-27 02:34:35 +00:00
|
|
|
echo -e " ${INFO} Wildcard blocked domain${plural}: ${num}"
|
|
|
|
else
|
|
|
|
echo -e " ${INFO} No wildcards used!"
|
|
|
|
fi
|
2015-11-23 11:11:16 +00:00
|
|
|
}
|
2015-11-26 23:48:52 +00:00
|
|
|
|
2017-07-24 11:24:34 +00:00
|
|
|
# Parse list of domains into hosts format
|
|
|
|
gravity_ParseDomainsIntoHosts() {
|
|
|
|
if [[ -n "${IPV4_ADDRESS}" ]] || [[ -n "${IPV6_ADDRESS}" ]]; then
|
2017-08-28 01:36:02 +00:00
|
|
|
# Awk Logic: Remove CR line endings and print IP before domain if IPv4/6 is used
|
2017-07-27 02:34:35 +00:00
|
|
|
awk -v ipv4addr="$IPV4_ADDRESS" -v ipv6addr="$IPV6_ADDRESS" '{
|
|
|
|
sub(/\r$/, "")
|
|
|
|
if(ipv4addr) { print ipv4addr" "$0; }
|
|
|
|
if(ipv6addr) { print ipv6addr" "$0; }
|
|
|
|
}' >> "${2}" < "${1}"
|
2017-07-24 11:24:34 +00:00
|
|
|
else
|
2017-06-21 11:49:05 +00:00
|
|
|
echo -e "${OVER} ${CROSS} ${str}"
|
2017-07-24 11:24:34 +00:00
|
|
|
echo -e " ${COL_LIGHT_RED}No IP addresses found! Please run 'pihole -r' to reconfigure${COL_NC}\\n"
|
|
|
|
gravity_Cleanup "error"
|
2017-06-17 11:50:10 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2017-09-14 06:39:30 +00:00
|
|
|
# Create "localhost" entries into hosts format
|
2017-07-24 11:24:34 +00:00
|
|
|
gravity_ParseLocalDomains() {
|
2017-07-27 02:34:35 +00:00
|
|
|
local hostname
|
|
|
|
|
2017-06-21 11:49:05 +00:00
|
|
|
if [[ -f "/etc/hostname" ]]; then
|
2017-07-24 11:24:34 +00:00
|
|
|
hostname=$(< "/etc/hostname")
|
2017-09-14 06:39:30 +00:00
|
|
|
elif command -v hostname &> /dev/null; then
|
2017-06-21 11:49:05 +00:00
|
|
|
hostname=$(hostname -f)
|
|
|
|
else
|
|
|
|
echo -e " ${CROSS} Unable to determine fully qualified domain name of host"
|
|
|
|
fi
|
|
|
|
|
2017-07-24 11:24:34 +00:00
|
|
|
echo -e "${hostname}\\npi.hole" > "${localList}.tmp"
|
2017-09-14 06:39:30 +00:00
|
|
|
# Copy the file over as /etc/pihole/local.list so dnsmasq can use it
|
|
|
|
rm "${localList}" 2> /dev/null || true
|
2017-07-24 11:24:34 +00:00
|
|
|
gravity_ParseDomainsIntoHosts "${localList}.tmp" "${localList}"
|
2017-09-14 06:39:30 +00:00
|
|
|
rm "${localList}.tmp" 2> /dev/null || true
|
|
|
|
|
|
|
|
# Add additional local hosts provided by OpenVPN (if available)
|
|
|
|
if [[ -f "${VPNList}" ]]; then
|
|
|
|
awk -F, '{printf $2"\t"$1"\n"}' "${VPNList}" >> "${localList}"
|
|
|
|
fi
|
2017-06-17 11:57:27 +00:00
|
|
|
}
|
2016-04-02 00:19:47 +00:00
|
|
|
|
2017-07-24 11:24:34 +00:00
|
|
|
# Create primary blacklist entries
|
|
|
|
gravity_ParseBlacklistDomains() {
|
2017-07-27 02:34:35 +00:00
|
|
|
local output status
|
2017-07-24 11:24:34 +00:00
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
# Empty $accretionDisc if it already exists, otherwise, create it
|
|
|
|
: > "${piholeDir}/${accretionDisc}"
|
2017-07-24 11:24:34 +00:00
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
gravity_ParseDomainsIntoHosts "${piholeDir}/${whitelistMatter}" "${piholeDir}/${accretionDisc}"
|
|
|
|
|
|
|
|
# Move the file over as /etc/pihole/gravity.list so dnsmasq can use it
|
2017-07-24 11:24:34 +00:00
|
|
|
output=$( { mv "${piholeDir}/${accretionDisc}" "${adList}"; } 2>&1 )
|
|
|
|
status="$?"
|
2017-06-21 11:49:05 +00:00
|
|
|
|
2017-07-24 11:24:34 +00:00
|
|
|
if [[ "${status}" -ne 0 ]]; then
|
2017-08-28 01:36:02 +00:00
|
|
|
echo -e " ${CROSS} Unable to move ${accretionDisc} from ${piholeDir}\\n ${output}"
|
2017-07-24 11:24:34 +00:00
|
|
|
gravity_Cleanup "error"
|
|
|
|
fi
|
2017-06-17 11:57:27 +00:00
|
|
|
}
|
2017-06-17 11:50:10 +00:00
|
|
|
|
2017-07-24 11:24:34 +00:00
|
|
|
# Create user-added blacklist entries
|
|
|
|
gravity_ParseUserDomains() {
|
2017-06-17 12:24:30 +00:00
|
|
|
if [[ -f "${blacklistFile}" ]]; then
|
2017-07-24 11:24:34 +00:00
|
|
|
gravity_ParseDomainsIntoHosts "${blacklistFile}" "${blackList}.tmp"
|
2017-06-17 12:24:30 +00:00
|
|
|
# Copy the file over as /etc/pihole/black.list so dnsmasq can use it
|
2017-07-24 11:24:34 +00:00
|
|
|
mv "${blackList}.tmp" "${blackList}" 2> /dev/null || \
|
|
|
|
echo -e " ${CROSS} Unable to move ${blackList##*/}.tmp to ${piholeDir}"
|
2017-06-17 12:24:30 +00:00
|
|
|
fi
|
2015-11-23 11:11:16 +00:00
|
|
|
}
|
2015-11-26 23:48:52 +00:00
|
|
|
|
2017-07-24 11:24:34 +00:00
|
|
|
# Trap Ctrl-C
|
|
|
|
gravity_Trap() {
|
|
|
|
trap '{ echo -e "\\n\\n ${INFO} ${COL_LIGHT_RED}User-abort detected${COL_NC}"; gravity_Cleanup "error"; }' INT
|
2015-12-26 18:37:51 +00:00
|
|
|
}
|
2015-12-05 03:41:37 +00:00
|
|
|
|
2017-07-24 11:24:34 +00:00
|
|
|
# Clean up after Gravity
|
|
|
|
gravity_Cleanup() {
|
|
|
|
local error="${1:-}"
|
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
str="Cleaning up stray matter"
|
2017-07-24 11:24:34 +00:00
|
|
|
echo -ne " ${INFO} ${str}..."
|
2017-06-21 11:49:05 +00:00
|
|
|
|
2017-07-24 11:24:34 +00:00
|
|
|
rm ${piholeDir}/pihole.*.txt 2> /dev/null
|
|
|
|
rm ${piholeDir}/*.tmp 2> /dev/null
|
|
|
|
|
|
|
|
# Remove any unused .domains files
|
|
|
|
for file in ${piholeDir}/*.${domainsExtension}; do
|
2017-07-27 02:34:35 +00:00
|
|
|
# If list is not in active array, then remove it
|
2017-09-14 06:39:30 +00:00
|
|
|
if [[ ! "${activeDomains[*]}" == *"${file}"* ]]; then
|
2017-07-24 11:24:34 +00:00
|
|
|
rm -f "${file}" 2> /dev/null || \
|
|
|
|
echo -e " ${CROSS} Failed to remove ${file##*/}"
|
|
|
|
fi
|
|
|
|
done
|
2017-06-21 11:49:05 +00:00
|
|
|
|
2017-07-24 11:24:34 +00:00
|
|
|
echo -e "${OVER} ${TICK} ${str}"
|
|
|
|
|
|
|
|
# Only restart DNS service if offline
|
|
|
|
if ! pidof dnsmasq &> /dev/null; then
|
|
|
|
"${PIHOLE_COMMAND}" restartdns
|
2017-09-14 10:23:49 +00:00
|
|
|
dnsWasOffline=true
|
2017-07-24 11:24:34 +00:00
|
|
|
fi
|
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
# Print Pi-hole status if an error occured
|
2017-08-28 01:36:02 +00:00
|
|
|
if [[ -n "${error}" ]]; then
|
2017-07-24 11:24:34 +00:00
|
|
|
"${PIHOLE_COMMAND}" status
|
|
|
|
exit 1
|
|
|
|
fi
|
2015-11-06 02:11:34 +00:00
|
|
|
}
|
2015-08-23 04:44:41 +00:00
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
helpFunc() {
|
|
|
|
echo "Usage: pihole -g
|
|
|
|
Update domains from blocklists specified in adlists.list
|
|
|
|
|
|
|
|
Options:
|
|
|
|
-f, --force Force the download of all specified blocklists
|
|
|
|
-h, --help Show this help dialog"
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
2016-10-22 06:02:45 +00:00
|
|
|
for var in "$@"; do
|
2017-06-21 11:49:05 +00:00
|
|
|
case "${var}" in
|
2017-07-24 11:24:34 +00:00
|
|
|
"-f" | "--force" ) forceDelete=true;;
|
|
|
|
"-h" | "--help" ) helpFunc;;
|
|
|
|
"-sd" | "--skip-download" ) skipDownload=true;;
|
2017-07-27 02:34:35 +00:00
|
|
|
"-b" | "--blacklist-only" ) listType="blacklist";;
|
|
|
|
"-w" | "--whitelist-only" ) listType="whitelist";;
|
|
|
|
"-wild" | "--wildcard-only" ) listType="wildcard";;
|
2017-06-21 11:49:05 +00:00
|
|
|
esac
|
2016-08-17 18:08:55 +00:00
|
|
|
done
|
|
|
|
|
2017-07-24 11:24:34 +00:00
|
|
|
gravity_Trap
|
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
# Ensure dnsmasq is restarted when modifying wildcards
|
|
|
|
[[ "${listType}" == "wildcard" ]] && dnsRestart="restart"
|
2017-07-24 11:24:34 +00:00
|
|
|
|
|
|
|
if [[ "${forceDelete}" == true ]]; then
|
2017-06-21 11:49:05 +00:00
|
|
|
str="Deleting exising list cache"
|
|
|
|
echo -ne "${INFO} ${str}..."
|
|
|
|
|
|
|
|
if rm /etc/pihole/list.* 2> /dev/null; then
|
|
|
|
echo -e "${OVER} ${TICK} ${str}"
|
|
|
|
else
|
|
|
|
echo -e "${OVER} ${CROSS} ${str}"
|
2017-07-27 02:34:35 +00:00
|
|
|
exit 1
|
2017-06-21 11:49:05 +00:00
|
|
|
fi
|
2016-08-17 18:08:55 +00:00
|
|
|
fi
|
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
# Determine which functions to run
|
|
|
|
if [[ "${skipDownload}" == false ]]; then
|
|
|
|
# Gravity needs to download blocklists
|
|
|
|
gravity_DNSLookup
|
2017-07-24 11:24:34 +00:00
|
|
|
gravity_Collapse
|
2017-07-27 02:34:35 +00:00
|
|
|
gravity_Supernova
|
|
|
|
gravity_Schwarzschild
|
|
|
|
gravity_Filter
|
|
|
|
gravity_WhitelistBLD
|
|
|
|
else
|
|
|
|
# Gravity needs to modify Blacklist/Whitelist/Wildcards
|
|
|
|
echo -e " ${INFO} Using cached Event Horizon list..."
|
|
|
|
numberOf=$(printf "%'.0f" "$(wc -l < "${piholeDir}/${preEventHorizon}")")
|
|
|
|
echo -e " ${INFO} ${COL_LIGHT_BLUE}${numberOf}${COL_NC} unique domains trapped in the Event Horizon"
|
|
|
|
fi
|
2017-07-24 11:24:34 +00:00
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
# Perform when downloading blocklists, or modifying the whitelist
|
|
|
|
if [[ "${skipDownload}" == false ]] || [[ "${listType}" == "whitelist" ]]; then
|
2017-06-17 11:57:27 +00:00
|
|
|
gravity_Whitelist
|
2016-10-19 22:52:54 +00:00
|
|
|
fi
|
2017-07-24 11:24:34 +00:00
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
gravity_ShowBlockCount
|
2016-10-19 22:15:05 +00:00
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
# Perform when downloading blocklists, or modifying the blacklist
|
|
|
|
if [[ "${skipDownload}" == false ]] || [[ "${listType}" == "blacklist" ]]; then
|
|
|
|
str="Parsing domains into hosts format"
|
|
|
|
echo -ne " ${INFO} ${str}..."
|
2017-07-24 11:24:34 +00:00
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
gravity_ParseUserDomains
|
2017-06-17 11:57:27 +00:00
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
# Perform when downloading blocklists
|
|
|
|
if [[ ! "${listType}" == "blacklist" ]]; then
|
|
|
|
gravity_ParseLocalDomains
|
|
|
|
gravity_ParseBlacklistDomains
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo -e "${OVER} ${TICK} ${str}"
|
|
|
|
fi
|
2016-10-19 22:15:05 +00:00
|
|
|
|
2017-07-27 02:34:35 +00:00
|
|
|
# Perform when downloading blocklists
|
|
|
|
if [[ "${skipDownload}" == false ]]; then
|
2017-07-24 11:24:34 +00:00
|
|
|
gravity_Cleanup
|
2017-06-17 11:57:27 +00:00
|
|
|
fi
|
|
|
|
|
2017-07-24 11:24:34 +00:00
|
|
|
echo ""
|
2017-09-14 10:23:49 +00:00
|
|
|
|
|
|
|
# Determine if DNS has been restarted by this instance of gravity
|
|
|
|
if [[ -z "${dnsWasOffline:-}" ]]; then
|
|
|
|
# Use "force-reload" when restarting dnsmasq for everything but Wildcards
|
|
|
|
"${PIHOLE_COMMAND}" restartdns "${dnsRestart:-force-reload}"
|
|
|
|
fi
|
2017-03-12 22:15:23 +00:00
|
|
|
"${PIHOLE_COMMAND}" status
|