Merge pull request #6562 from KarlVogel/host_sanitize
ddns-scripts: sanitize host charset and shell escape characters
This commit is contained in:
commit
65d9b3f92b
2 changed files with 62 additions and 8 deletions
|
@ -63,6 +63,12 @@ IPV4_REGEX="[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}"
|
||||||
# IPv6 ( ( 0-9a-f 1-4char ":") min 1x) ( ( 0-9a-f 1-4char )optional) ( (":" 0-9a-f 1-4char ) min 1x)
|
# IPv6 ( ( 0-9a-f 1-4char ":") min 1x) ( ( 0-9a-f 1-4char )optional) ( (":" 0-9a-f 1-4char ) min 1x)
|
||||||
IPV6_REGEX="\(\([0-9A-Fa-f]\{1,4\}:\)\{1,\}\)\(\([0-9A-Fa-f]\{1,4\}\)\{0,1\}\)\(\(:[0-9A-Fa-f]\{1,4\}\)\{1,\}\)"
|
IPV6_REGEX="\(\([0-9A-Fa-f]\{1,4\}:\)\{1,\}\)\(\([0-9A-Fa-f]\{1,4\}\)\{0,1\}\)\(\(:[0-9A-Fa-f]\{1,4\}\)\{1,\}\)"
|
||||||
|
|
||||||
|
# characters that are dangerous to pass to a shell command line
|
||||||
|
SHELL_ESCAPE="[\"\'\`\$\!();><{}?|\[\]\*\\\\]"
|
||||||
|
|
||||||
|
# dns character set
|
||||||
|
DNS_CHARSET="[@a-zA-Z0-9._-]"
|
||||||
|
|
||||||
# detect if called by ddns-lucihelper.sh script, disable retrys (empty variable == false)
|
# detect if called by ddns-lucihelper.sh script, disable retrys (empty variable == false)
|
||||||
LUCI_HELPER=$(printf %s "$MYPROG" | grep -i "luci")
|
LUCI_HELPER=$(printf %s "$MYPROG" | grep -i "luci")
|
||||||
|
|
||||||
|
@ -474,6 +480,27 @@ timeout() {
|
||||||
return $status
|
return $status
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# sanitize a variable
|
||||||
|
# $1 variable name
|
||||||
|
# $2 allowed shell pattern
|
||||||
|
# $3 disallowed shell pattern
|
||||||
|
sanitize_variable() {
|
||||||
|
local __VAR=$1
|
||||||
|
eval __VALUE=\$$__VAR
|
||||||
|
local __ALLOWED=$2
|
||||||
|
local __REJECT=$3
|
||||||
|
|
||||||
|
# removing all allowed should give empty string
|
||||||
|
if [ -n "$__ALLOWED" ]; then
|
||||||
|
[ -z "${__VALUE//$__ALLOWED}" ] || write_log 12 "sanitize on $__VAR found characters outside allowed subset"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# removing rejected pattern should give the same string as the input
|
||||||
|
if [ -n "$__REJECT" ]; then
|
||||||
|
[ "$__VALUE" = "${__VALUE//$__REJECT}" ] || write_log 12 "sanitize on $__VAR found rejected characters"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
# verify given host and port is connectable
|
# verify given host and port is connectable
|
||||||
# $1 Host/IP to verify
|
# $1 Host/IP to verify
|
||||||
# $2 Port to verify
|
# $2 Port to verify
|
||||||
|
@ -515,7 +542,10 @@ verify_host_port() {
|
||||||
__RUNPROG="$NSLOOKUP $__HOST >$DATFILE 2>$ERRFILE"
|
__RUNPROG="$NSLOOKUP $__HOST >$DATFILE 2>$ERRFILE"
|
||||||
fi
|
fi
|
||||||
write_log 7 "#> $__RUNPROG"
|
write_log 7 "#> $__RUNPROG"
|
||||||
eval $__RUNPROG
|
(
|
||||||
|
set -o noglob
|
||||||
|
eval $__RUNPROG
|
||||||
|
)
|
||||||
__ERR=$?
|
__ERR=$?
|
||||||
# command error
|
# command error
|
||||||
[ $__ERR -gt 0 ] && {
|
[ $__ERR -gt 0 ] && {
|
||||||
|
@ -568,7 +598,10 @@ verify_host_port() {
|
||||||
if [ -n "$__NCEXT" ]; then # BusyBox nc compiled with extensions (timeout support)
|
if [ -n "$__NCEXT" ]; then # BusyBox nc compiled with extensions (timeout support)
|
||||||
__RUNPROG="$__NC -w 1 $__IP $__PORT </dev/null >$DATFILE 2>$ERRFILE"
|
__RUNPROG="$__NC -w 1 $__IP $__PORT </dev/null >$DATFILE 2>$ERRFILE"
|
||||||
write_log 7 "#> $__RUNPROG"
|
write_log 7 "#> $__RUNPROG"
|
||||||
eval $__RUNPROG
|
(
|
||||||
|
set -o noglob
|
||||||
|
eval $__RUNPROG
|
||||||
|
)
|
||||||
__ERR=$?
|
__ERR=$?
|
||||||
[ $__ERR -eq 0 ] && return 0
|
[ $__ERR -eq 0 ] && return 0
|
||||||
write_log 3 "Connect error - BusyBox nc (netcat) Error '$__ERR'"
|
write_log 3 "Connect error - BusyBox nc (netcat) Error '$__ERR'"
|
||||||
|
@ -577,7 +610,10 @@ verify_host_port() {
|
||||||
else # nc compiled without extensions (no timeout support)
|
else # nc compiled without extensions (no timeout support)
|
||||||
__RUNPROG="timeout 2 -- $__NC $__IP $__PORT </dev/null >$DATFILE 2>$ERRFILE"
|
__RUNPROG="timeout 2 -- $__NC $__IP $__PORT </dev/null >$DATFILE 2>$ERRFILE"
|
||||||
write_log 7 "#> $__RUNPROG"
|
write_log 7 "#> $__RUNPROG"
|
||||||
eval $__RUNPROG
|
(
|
||||||
|
set -o noglob
|
||||||
|
eval $__RUNPROG
|
||||||
|
)
|
||||||
__ERR=$?
|
__ERR=$?
|
||||||
[ $__ERR -eq 0 ] && return 0
|
[ $__ERR -eq 0 ] && return 0
|
||||||
write_log 3 "Connect error - BusyBox nc (netcat) timeout Error '$__ERR'"
|
write_log 3 "Connect error - BusyBox nc (netcat) timeout Error '$__ERR'"
|
||||||
|
@ -696,7 +732,7 @@ do_transfer() {
|
||||||
local __BINDIP
|
local __BINDIP
|
||||||
# set correct program to detect IP
|
# set correct program to detect IP
|
||||||
[ $use_ipv6 -eq 0 ] && __RUNPROG="network_get_ipaddr" || __RUNPROG="network_get_ipaddr6"
|
[ $use_ipv6 -eq 0 ] && __RUNPROG="network_get_ipaddr" || __RUNPROG="network_get_ipaddr6"
|
||||||
eval "$__RUNPROG __BINDIP $bind_network" || \
|
( set -o noglob ; eval "$__RUNPROG __BINDIP $bind_network" ) || \
|
||||||
write_log 13 "Can not detect local IP using '$__RUNPROG $bind_network' - Error: '$?'"
|
write_log 13 "Can not detect local IP using '$__RUNPROG $bind_network' - Error: '$?'"
|
||||||
write_log 7 "Force communication via IP '$__BINDIP'"
|
write_log 7 "Force communication via IP '$__BINDIP'"
|
||||||
__PROG="$__PROG --bind-address=$__BINDIP"
|
__PROG="$__PROG --bind-address=$__BINDIP"
|
||||||
|
@ -822,7 +858,10 @@ do_transfer() {
|
||||||
|
|
||||||
while : ; do
|
while : ; do
|
||||||
write_log 7 "#> $__RUNPROG"
|
write_log 7 "#> $__RUNPROG"
|
||||||
eval $__RUNPROG # DO transfer
|
(
|
||||||
|
set -o noglob
|
||||||
|
eval $__RUNPROG # DO transfer
|
||||||
|
)
|
||||||
__ERR=$? # save error code
|
__ERR=$? # save error code
|
||||||
[ $__ERR -eq 0 ] && return 0 # no error leave
|
[ $__ERR -eq 0 ] && return 0 # no error leave
|
||||||
[ -n "$LUCI_HELPER" ] && return 1 # no retry if called by LuCI helper script
|
[ -n "$LUCI_HELPER" ] && return 1 # no retry if called by LuCI helper script
|
||||||
|
@ -907,7 +946,7 @@ get_local_ip () {
|
||||||
network_flush_cache # force re-read data from ubus
|
network_flush_cache # force re-read data from ubus
|
||||||
[ $use_ipv6 -eq 0 ] && __RUNPROG="network_get_ipaddr" \
|
[ $use_ipv6 -eq 0 ] && __RUNPROG="network_get_ipaddr" \
|
||||||
|| __RUNPROG="network_get_ipaddr6"
|
|| __RUNPROG="network_get_ipaddr6"
|
||||||
eval "$__RUNPROG __DATA $ip_network" || \
|
( set -o noglob ; eval "$__RUNPROG __DATA $ip_network" ) || \
|
||||||
write_log 13 "Can not detect local IP using $__RUNPROG '$ip_network' - Error: '$?'"
|
write_log 13 "Can not detect local IP using $__RUNPROG '$ip_network' - Error: '$?'"
|
||||||
[ -n "$__DATA" ] && write_log 7 "Local IP '$__DATA' detected on network '$ip_network'"
|
[ -n "$__DATA" ] && write_log 7 "Local IP '$__DATA' detected on network '$ip_network'"
|
||||||
elif [ -n "$ip_interface" ]; then
|
elif [ -n "$ip_interface" ]; then
|
||||||
|
@ -991,7 +1030,10 @@ get_local_ip () {
|
||||||
[ -n "$__DATA" ] && write_log 7 "Local IP '$__DATA' detected on interface '$ip_interface'"
|
[ -n "$__DATA" ] && write_log 7 "Local IP '$__DATA' detected on interface '$ip_interface'"
|
||||||
elif [ -n "$ip_script" ]; then
|
elif [ -n "$ip_script" ]; then
|
||||||
write_log 7 "#> $ip_script >$DATFILE 2>$ERRFILE"
|
write_log 7 "#> $ip_script >$DATFILE 2>$ERRFILE"
|
||||||
eval $ip_script >$DATFILE 2>$ERRFILE
|
(
|
||||||
|
set -o noglob
|
||||||
|
eval $ip_script >$DATFILE 2>$ERRFILE
|
||||||
|
)
|
||||||
__ERR=$?
|
__ERR=$?
|
||||||
if [ $__ERR -eq 0 ]; then
|
if [ $__ERR -eq 0 ]; then
|
||||||
__DATA=$(cat $DATFILE)
|
__DATA=$(cat $DATFILE)
|
||||||
|
@ -1131,7 +1173,10 @@ get_registered_ip() {
|
||||||
|
|
||||||
while : ; do
|
while : ; do
|
||||||
write_log 7 "#> $__RUNPROG"
|
write_log 7 "#> $__RUNPROG"
|
||||||
eval $__RUNPROG
|
(
|
||||||
|
set -o noglob
|
||||||
|
eval $__RUNPROG
|
||||||
|
)
|
||||||
__ERR=$?
|
__ERR=$?
|
||||||
if [ $__ERR -ne 0 ]; then
|
if [ $__ERR -ne 0 ]; then
|
||||||
write_log 3 "$__PROG error: '$__ERR'"
|
write_log 3 "$__PROG error: '$__ERR'"
|
||||||
|
|
|
@ -247,6 +247,15 @@ esac
|
||||||
# without lookup host and possibly other required options we can do nothing for you
|
# without lookup host and possibly other required options we can do nothing for you
|
||||||
[ -z "$lookup_host" ] && write_log 14 "Service section not configured correctly! Missing 'lookup_host'"
|
[ -z "$lookup_host" ] && write_log 14 "Service section not configured correctly! Missing 'lookup_host'"
|
||||||
|
|
||||||
|
# verify validity of variables
|
||||||
|
[ -n "$lookup_host" ] && sanitize_variable lookup_host "$DNS_CHARSET" ""
|
||||||
|
[ -n "$dns_server" ] && sanitize_variable dns_server "$DNS_CHARSET" ""
|
||||||
|
[ -n "$domain" ] && sanitize_variable domain "$DNS_CHARSET" ""
|
||||||
|
|
||||||
|
# Filter shell escape characters, if these are required in the URL, they
|
||||||
|
# can still be passed url encoded
|
||||||
|
[ -n "$param_opt" ] && sanitize_variable param_opt "" "$SHELL_ESCAPE"
|
||||||
|
|
||||||
[ -n "$update_url" ] && {
|
[ -n "$update_url" ] && {
|
||||||
# only check if update_url is given, update_scripts have to check themselves
|
# only check if update_url is given, update_scripts have to check themselves
|
||||||
[ -z "$domain" ] && $(echo "$update_url" | grep "\[DOMAIN\]" >/dev/null 2>&1) && \
|
[ -z "$domain" ] && $(echo "$update_url" | grep "\[DOMAIN\]" >/dev/null 2>&1) && \
|
||||||
|
|
Loading…
Reference in a new issue