ændrük suggested a reverse connection for getting an easy SSH connection with someone else (for remote help). For that to work, an additional user is needed to accept the connection. This user needs to be able to forward his port through the server (the server acts as proxy).
How do I create a restricted user that can do nothing more than the above described?
The new user must not be able to:
- execute shell commands
- access files or upload files to the server
- use the server as proxy (e.g. webproxy)
- access local services which were otherwise not publicly accessible due to a firewall
- kill the server
Summarized, how do I create a restricted SSH user which is only able to connect to the SSH server without privileges, so I can connect through that connection with his computer?
TL;DR - go to the bottom of the answer, "Applying the restrictions"
Adding a restricted user consists of two parts: 1. Creating the user 2. Configuring the SSH daemon (sshd)
Configuring sshd
The best place to get known to the possibilities of SSH is by reading the related manual pages:
Where can SSH client perform actions?
Before you can restrict something, you need to know the features of SSH. Spitting through the manual pages yields:
From the Authentication section of the manual page of sshd(8):
Options for restricting SSH features
Files and their options that alter behavior are:
~/.ssh/authorized_keys
- contains keys which are allowed to connect which can be given options:command="command"
- The command supplied by the user (if any) is ignored. Note that the client may specify TCP and/or X11 forwarding unless they are explicitly prohibited. Note that this option applies to shell, command or subsystem execution.no-agent-forwarding
- Forbids authentication agent forwarding when this key is used for authentication.no-port-forwarding
- Forbids TCP forwarding when this key is used for authenticationno-X11-forwarding
- "Forbids X11 forwarding when this key is used for authentication."permitopen="host:port"
- Limit local 'ssh -L' port forwarding such that it may only connect to the specified host and port.~/.ssh/environment
- This file is read into the environment at login (if it exists). Environment processing is disabled by default and is controlled via the PermitUserEnvironment option~/.ssh/rc
- Contains initialization routines to be run before the user's home directory becomes accessible./etc/ssh/sshd_config
- the system-wide configuration fileAllowAgentForwarding
- Specifies whether ssh-agent(1) forwarding is permitted.AllowTcpForwarding
ForceCommand
- "Forces the execution of the command specified by ForceCommand, ignoring any command supplied by the client and ~/.ssh/rc if present. The command is invoked by using the user's login shell with the -c option."GatewayPorts
- "Specifies whether remote hosts are allowed to connect to ports forwarded for the client. By default, sshd(8) binds remote port forwardings to the loopback address. This prevents other remote hosts from connecting to forwarded ports. GatewayPorts can be used to specify that sshd should allow remote port forwardings to bind to non-loopback addresses, thus allowing other hosts to connect."PermitOpen
:PermitTunnel
- Specifies whether tun(4) device forwarding is allowed. The default is 'no'X11Forwarding
- Specifies whether X11 forwarding is permitted. The default is 'no'Applying the restrictions
Modifying the system-wide configuration file
/etc/ssh/sshd_config
allows the configuration be applied even if password-based authentication is applied or if the restrictions in~/.ssh/authorized_keys
are accidentally removed. If you've modified the global defaults, you should uncomment the options accordingly.Now add a user:
The option
ForceCommand
can be omitted if the shell is set to a non-shell like/bin/false
(or/bin/true
) as/bin/false -c [command]
won't do anything.Now the client can only connect to port 62222 on the loopback address of the server over SSH (it will not listen on the public IP address)
Disabling
AllowTcpForwarding
would also disallow the use of-R
, thus defeating the use of such a restricted account for forwarding a single port.PermitOpen localhost:62222
assumes that port 62222 on the server is never in use because the client can happily connect to it and listen on it too.If TCP forwarding is allowed in the system-wide configuration and disabled password-based authentication, you can use per-key settings as well. Edit
~/.ssh/authorized_keys
and add the next options before thessh-
(with a space between the options andssh-
):Verify
To be sure that it works as expected, some test cases need to be run. In the below commands,
host
should be replaced by the actual login if it's not set in~/.ssh/config
. Behind the command, a command is shown that should be executed on either the client or server (as specified).Conclusion
Checklist: The SSH user should not able to:
I'm sure there are many solutions to this, and many more robust than the one I'm proposing. However, this may be sufficient for your needs. In order to do it, I'm assuming the user has is able to do ssh key based authentication (putty or any unix ssh should support this).
Add a user as you normally would ('adduser' or any other tool)
Create the users .ssh dir and .ssh/authorized_keys
Now, the only way that user can get into your system is via access to the proper ssh key, and ssh will run "/bin/bash -c 'read a'" for them, no matter what they attempt to run. 'read a' will simply read until a newline, and then the shell will exit, so the user just has to hit 'enter' to kill the connection.
There are lots of other things you could do in 'command='. See
man authorized_keys
and search for 'command' for more information.If you do not like the fact that hitting enter kills the connection, you could use something like the following for the 'command=' entry:
This just creates a temporary fifo in the users home directory, and then tries to read from it. Nothing will be writing to that file, so this will hang indefinitely. Additionally, if you want to forcefully terminate that connection, you could do something like:
This should use very little resources, and nothing should be able to go wrong in that script that would not end in termination of the shell.
I didn't see off hand how you could allow the user to remote forward (
ssh -R
) but limit (ssh -L
). Perhaps 'permitopen' could be used. Googling was not very helpful. It would seem that something like 'no-port-forwarding,permitremoteopen=10001' would be useful to allowssh -R 6901:localhost:6901
.This is a solution. It can most definitely be improved on, and any opening of remote ports should be scrutinized. If my goal was to allow my Grandmother to connect into my LAN so I could use vnc to view her screen, and access to those keys was limited to her, I personally would feel reasonably safe. If this was for an enterprise, more thorough investigation would be necessary. One thing to be aware of is
ssh -N
does not request a shell at all, so the 'command=' code does not execute.Other, possibly more secure mechanisms may include creating a custom shell for the user, and even locking that down with apparmour.
Try
command="exit"
That would force users to use this command to portforward
ssh -NfR EXTERNAL_PORT:localhost:INTERNAL_PORT usr@server -i key