From: Chris Koeritz Date: Sun, 1 Nov 2020 15:13:38 +0000 (-0500) Subject: dropped -Y flag from ssh due to potential insecurity X-Git-Tag: 2.140.128~1^2~41 X-Git-Url: https://feistymeow.org/gitweb/?p=feisty_meow.git;a=commitdiff_plain;h=acd77159da7b6b42af83e908cddd74a2c26d38bb dropped -Y flag from ssh due to potential insecurity --- diff --git a/scripts/core/functions.sh b/scripts/core/functions.sh index 28c2f058..9f390546 100644 --- a/scripts/core/functions.sh +++ b/scripts/core/functions.sh @@ -225,7 +225,8 @@ if [ -z "$skip_all" ]; then # local oldterm="$TERM" # export TERM=linux - /usr/bin/ssh -Y -C "${args[@]}" + /usr/bin/ssh -C "${args[@]}" +# removed -Y flag because considered dangerous to trust remote hosts to not abuse our X session. # # restore the terminal variable also. # TERM="$oldterm"