Skip to content

Commit

Permalink
Get API port from pihole-FTL.conf instead of port file (#260)
Browse files Browse the repository at this point in the history
  • Loading branch information
yubiuser committed Oct 1, 2022
2 parents ebbc5f7 + 9f333c8 commit 4bff926
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion padd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ padd_logo_retro_3="${bold_text}${green_text}| ${red_text}/${yellow_text}-${gre

GetFTLData() {
local ftl_port data
ftl_port=$(cat /run/pihole-FTL.port 2> /dev/null)
ftl_port=$(getFTLAPIPort)
if [ -n "$ftl_port" ]; then
# Send command to FTL and ask to quit when finished
data="$(echo ">$1 >quit" | nc 127.0.0.1 "${ftl_port}")"
Expand Down Expand Up @@ -1011,6 +1011,28 @@ VersionConverter() {
echo "$@" | tr -d '[:alpha:]' | awk -F. '{ printf("%d%03d%03d%03d\n", $1,$2,$3,$4); }';
}

# get the Telnet API Port FTL is using by parsing `pihole-FTL.conf`
# same implementation as https://github.com/pi-hole/pi-hole/pull/4945
getFTLAPIPort(){
local FTLCONFFILE="/etc/pihole/pihole-FTL.conf"
local DEFAULT_FTL_PORT=4711
local ftl_api_port

if [ -s "$FTLCONFFILE" ]; then
# if FTLPORT is not set in pihole-FTL.conf, use the default port
ftl_api_port="$({ grep '^FTLPORT=' "${FTLCONFFILE}" || echo "${DEFAULT_FTL_PORT}"; } | cut -d'=' -f2-)"
# Exploit prevention: set the port to the default port if there is malicious (non-numeric)
# content set in pihole-FTL.conf
expr "${ftl_api_port}" : "[^[:digit:]]" > /dev/null && ftl_api_port="${DEFAULT_FTL_PORT}"
else
# if there is no pihole-FTL.conf, use the default port
ftl_api_port="${DEFAULT_FTL_PORT}"
fi

echo "${ftl_api_port}"

}

########################################## MAIN FUNCTIONS ##########################################

OutputJSON() {
Expand Down

0 comments on commit 4bff926

Please sign in to comment.