⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readme.privsep

📁 OpenSSH 是 SSH (Secure SHell) 协议的免费开源实现。它用安全、加密的网络连接工具代替了 telnet、ftp、 rlogin、rsh 和 rcp 工具。OpenSSH 支持
💻 PRIVSEP
字号:
Privilege separation, or privsep, is method in OpenSSH by whichoperations that require root privilege are performed by a separateprivileged monitor process.  Its purpose is to prevent privilegeescalation by containing corruption to an unprivileged process.More information is available at:	http://www.citi.umich.edu/u/provos/ssh/privsep.htmlPrivilege separation is now enabled by default; see theUsePrivilegeSeparation option in sshd_config(5).On systems which lack mmap or anonymous (MAP_ANON) memory mapping,compression must be disabled in order for privilege separation tofunction.When privsep is enabled, during the pre-authentication phase sshd willchroot(2) to "/var/empty" and change its privileges to the "sshd" userand its primary group.  sshd is a pseudo-account that should not beused by other daemons, and must be locked and should contain a"nologin" or invalid shell.You should do something like the following to prepare the privseppreauth environment:	# mkdir /var/empty	# chown root:sys /var/empty	# chmod 755 /var/empty	# groupadd sshd	# useradd -g sshd -c 'sshd privsep' -d /var/empty -s /bin/false sshd/var/empty should not contain any files.configure supports the following options to change the defaultprivsep user and chroot directory:  --with-privsep-path=xxx Path for privilege separation chroot  --with-privsep-user=user Specify non-privileged user for privilege separationPrivsep requires operating system support for file descriptor passing.Compression will be disabled on systems without a working mmap MAP_ANON.PAM-enabled OpenSSH is known to function with privsep on AIX, HP-UX(including Trusted Mode), Linux and Solaris.On Cygwin, Tru64 Unix, OpenServer, and Unicos only the pre-authenticationpart of privsep is supported.  Post-authentication privsep is disabledautomatically (so you won't see the additional process mentioned below).Note that for a normal interactive login with a shell, enabling privsepwill 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 -bashprocess 1005 is the sshd process listening for new connections.process 6917 is the privileged monitor process, 6919 is the user ownedsshd process and 6921 is the shell process.$Id: README.privsep,v 1.15 2004/10/06 10:09:32 dtucker Exp $

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -