What is the difference between ssh -Y
(trusted X11 forwarding) and ssh -X
(untrusted X11 forwarding)? As far as I have understood it, it has something to do with security, but I did not grasp the difference and when to use which.
What is the difference between ssh -Y
(trusted X11 forwarding) and ssh -X
(untrusted X11 forwarding)? As far as I have understood it, it has something to do with security, but I did not grasp the difference and when to use which.
Both options have something to do with X11 forwarding. This means if you enable this, you can use a graphical client through your SSH session (e.g., use Firefox or something else).
If you use
ssh -X remotemachine
the remote machine is treated as an untrusted client. So your local client sends a command to the remote machine and receives the graphical output. If your command violates some security settings you'll receive an error instead.But if you use
ssh -Y remotemachine
the remote machine is treated as a trusted client. This last option can open security problems. Because other graphical (X11) clients could sniff data from the remote machine (make screenshots, do keylogging and other nasty stuff) and it is even possible to alter those data.If you want to know more about those things, I suggest reading the Xsecurity manpage or the X Security extension spec. Furthermore, you can check the options
ForwardX11
andForwardX11Trusted
in your/etc/ssh/ssh_config
.Use neither when you don't need to run X11 programs remotely; use
-X
when you do; and hypothetically use-Y
if an X11 program you care about works better with -Y than with -X. But currently (Ubuntu 15.10), -X is identical to -Y, unless you editssh_config
to sayForwardX11Trusted no
. -X was originally intended to enable the X Security extension of the 1990's, but that is old and inflexible, and crashes some programs, and so is ignored by default.Both ssh
-Y
and-X
let you run an X11 program on a remote machine, with its windows appearing on the local X monitor. The issue is what the program is allowed to do to other programs' windows, and to the X server itself.Trusted X11 forwarding is enabled by
-Y
. This is the historical behavior. A program with access to the display, is trusted with access to the entire display. It can screenshot, keylog, and inject input into all the windows of other programs. And it can use all X server extensions, including ones like accelerated graphics, which are security exposures. Which is good for running smoothly, but bad for security. You are trusting the remote programs to be as safe as your local programs.Untrusted X11 forwarding tries to restrict remote programs to accessing only their own windows, and to using only those parts of X which are relatively secure. Which sounds good, but currently doesn't work well in practice.
The meaning of
-X
currently depends on your ssh configuration.On Ubuntu 14.04 LTS, unless you edit your
ssh_config
, there is no difference between-X
and-Y
. "[B]ecause too many programs currently crash in [untrusted] mode."If
ForwardX11Trusted no
, then-X
enables untrusted forwarding. Otherwise,-X
is treated the same as-Y
, trusting that remote programs with display access are friendly.The
-X
option enables X11 forwarding:The option
-Y
, corresponding to the ForwardX11Trusted directive in ssh_config(5), is even less secure because, it removes X11 SECURITY extension controls.It's more secure to use
-x
from man:
Debian-specific:
In the default configuration:
ForwardX11Trusted yes
-Y is equivalent to -X ( I think this describtion is better: -X is as easy to use as -Y, but with same risks)
untrusted does not mean that machine is more dangerous than trusted machine, but means you are cautious, so safer.