2002-06-21 16:45:50 +02:00
|
|
|
Privilege separation, or privsep, is method in OpenSSH by which
|
|
|
|
operations that require root privilege are performed by a separate
|
|
|
|
privileged monitor process. Its purpose is to prevent privilege
|
2003-11-21 13:48:55 +01:00
|
|
|
escalation by containing corruption to an unprivileged process.
|
2002-06-21 16:45:50 +02:00
|
|
|
More information is available at:
|
2002-05-13 05:57:04 +02:00
|
|
|
http://www.citi.umich.edu/u/provos/ssh/privsep.html
|
|
|
|
|
2019-09-19 07:41:23 +02:00
|
|
|
Privilege separation is now mandatory. During the pre-authentication
|
|
|
|
phase sshd will chroot(2) to "/var/empty" and change its privileges to the
|
|
|
|
"sshd" user and its primary group. sshd is a pseudo-account that should
|
|
|
|
not be used by other daemons, and must be locked and should contain a
|
2002-06-26 02:43:57 +02:00
|
|
|
"nologin" or invalid shell.
|
|
|
|
|
|
|
|
You should do something like the following to prepare the privsep
|
|
|
|
preauth environment:
|
2002-05-13 05:57:04 +02:00
|
|
|
|
|
|
|
# mkdir /var/empty
|
|
|
|
# chown root:sys /var/empty
|
|
|
|
# chmod 755 /var/empty
|
|
|
|
# groupadd sshd
|
2002-06-26 02:43:57 +02:00
|
|
|
# useradd -g sshd -c 'sshd privsep' -d /var/empty -s /bin/false sshd
|
2002-05-13 05:57:04 +02:00
|
|
|
|
|
|
|
/var/empty should not contain any files.
|
|
|
|
|
|
|
|
configure supports the following options to change the default
|
|
|
|
privsep user and chroot directory:
|
|
|
|
|
2002-05-22 03:02:15 +02:00
|
|
|
--with-privsep-path=xxx Path for privilege separation chroot
|
2002-05-13 05:57:04 +02:00
|
|
|
--with-privsep-user=user Specify non-privileged user for privilege separation
|
|
|
|
|
2005-06-05 01:21:41 +02:00
|
|
|
PAM-enabled OpenSSH is known to function with privsep on AIX, FreeBSD,
|
|
|
|
HP-UX (including Trusted Mode), Linux, NetBSD and Solaris.
|
2002-05-13 05:57:04 +02:00
|
|
|
|
2018-02-15 12:22:38 +01:00
|
|
|
On Cygwin, Tru64 Unix and OpenServer only the pre-authentication part
|
|
|
|
of privsep is supported. Post-authentication privsep is disabled
|
2004-06-28 05:50:35 +02:00
|
|
|
automatically (so you won't see the additional process mentioned below).
|
2003-03-21 02:18:09 +01:00
|
|
|
|
2002-05-13 05:57:04 +02:00
|
|
|
Note that for a normal interactive login with a shell, enabling privsep
|
|
|
|
will require 1 additional process per login session.
|
|
|
|
|
|
|
|
Given the following process listing (from HP-UX):
|
|
|
|
|
|
|
|
UID PID PPID C STIME TTY TIME COMMAND
|
|
|
|
root 1005 1 0 10:45:17 ? 0:08 /opt/openssh/sbin/sshd -u0
|
|
|
|
root 6917 1005 0 15:19:16 ? 0:00 sshd: stevesk [priv]
|
|
|
|
stevesk 6919 6917 0 15:19:17 ? 0:03 sshd: stevesk@2
|
|
|
|
stevesk 6921 6919 0 15:19:17 pts/2 0:00 -bash
|
|
|
|
|
|
|
|
process 1005 is the sshd process listening for new connections.
|
|
|
|
process 6917 is the privileged monitor process, 6919 is the user owned
|
|
|
|
sshd process and 6921 is the shell process.
|