Rsshを使用して、ユーザーを/ home/user/public_htmlディレクトリに厳密に投獄しようとしています。テストサーバー上でアカウントがシステムに正常にSFTPできる場所で機能するようになりましたが、そのアカウントとしてログインすると、ディレクトリを任意の場所に変更してファイルの内容を表示できることに気付きました。私はそれらのディレクトリを編集したり転送したりできないかもしれませんが、それらを投獄できることの全体的な目的はそのようなことを防ぐことだと思いましたか?
SSHDはサブシステムsftpinternal-sftp RSSHでセットアップされ、ユーザーはscpとsftpのみを使用できるように指定されています。ユーザーのアカウントはシェルに/ usr/bin/rsshを使用しており、/ home/user/public_htmlユーザーのホームディレクトリはrootです。ユーザー所有者:グループ
内容を表示できるファイルとcdできるディレクトリはすべて世界中で読み取り可能であることに気づきましたが、それは理にかなっていますが、なぜディレクトリのままにしておくことができるのでしょうか。そして、私が自分の質問に答えたとは言わないでください。目的は、これを防ぐためのベストプラクティスの解決策を見つけることです。
望ましい結果は、所有していないディレクトリにCDを挿入する機能が制限されることです。
ここで何かが足りませんか?
Rssh.confファイルの内容は次のとおりです。
logfacility = LOG_USER
allowscp
allowsftp
#allowcvs
#allowrdist
#allowrsync
#allowsvnserve
# set the default umask
umask = 022
user=wwwtest1:077:110000:/home/wwwtest1/public_html
そして、これがsshd_configファイルの内容です。
# Package generated configuration file
# See the sshd_config(5) manpage for details
# What ports, IPs and protocols we listen for
Port 22
# Use these options to restrict which interfaces/protocols sshd will bind to
#ListenAddress ::
#ListenAddress 0.0.0.0
Protocol 2
# HostKeys for protocol version 2
HostKey /etc/ssh/ssh_Host_rsa_key
HostKey /etc/ssh/ssh_Host_dsa_key
HostKey /etc/ssh/ssh_Host_ecdsa_key
#Privilege Separation is turned on for security
UsePrivilegeSeparation yes
# Lifetime and size of ephemeral version 1 server key
KeyRegenerationInterval 3600
ServerKeyBits 768
# Logging
SyslogFacility AUTH
LogLevel INFO
# Authentication:
LoginGraceTime 120
PermitRootLogin yes
StrictModes yes
RSAAuthentication yes
PubkeyAuthentication yes
#AuthorizedKeysFile %h/.ssh/authorized_keys
# Don't read the user's ~/.rhosts and ~/.shosts files
IgnoreRhosts yes
# For this to work you will also need Host keys in /etc/ssh_known_hosts
RhostsRSAAuthentication no
# similar for protocol version 2
HostbasedAuthentication no
# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
#IgnoreUserKnownHosts yes
# To enable empty passwords, change to yes (NOT RECOMMENDED)
PermitEmptyPasswords no
# Change to yes to enable challenge-response passwords (beware issues with
# some PAM modules and threads)
ChallengeResponseAuthentication no
# Change to no to disable tunnelled clear text passwords
#PasswordAuthentication yes
# Kerberos options
#KerberosAuthentication no
#KerberosGetAFSToken no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes
# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes
X11Forwarding yes
X11DisplayOffset 10
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
#UseLogin no
#MaxStartups 10:30:60
#Banner /etc/issue.net
# Allow client to pass locale environment variables
AcceptEnv LANG LC_*
#Subsystem sftp /usr/lib/openssh/sftp-server
Subsystem sftp internal-sftp
# Set this to 'yes' to enable PAM authentication, account processing,
# and session processing. If this is enabled, PAM authentication will
# be allowed through the ChallengeResponseAuthentication and
# PasswordAuthentication. Depending on your PAM configuration,
# PAM authentication via ChallengeResponseAuthentication may bypass
# the setting of "PermitRootLogin without-password".
# If you just want the PAM account and session checks to run without
# PAM authentication, then enable this but set PasswordAuthentication
# and ChallengeResponseAuthentication to 'no'.
UsePAM yes
必要なのがsftpだけの場合は、rsshやjailの作成を気にしないでください。最近のバージョンのopenssh-serverは、内部sftpサーバーを使用している場合、sftpユーザーをchrootできます。たとえば、特定のグループのすべてのユーザーをホームディレクトリにchrootしたい場合は、これをsshd_configに追加できます。
Match Group sftp-only
ChrootDirectory %h
ForceCommand internal-sftp
AllowTcpForwarding no
rssh.conf
ファイルのユーザー定義を除いて、正しくセットアップされているようです。次のように設定する必要があります。
user=wwwtest1:077:000110:/home/wwwtest1/public_html
次の代わりにSCPまたはSFTPへのアクセスを許可するため。
user=wwwtest1:077:110000:/home/wwwtest1/public_html
これは、CVS、Rsync、およびRdistへのアクセスのみを提供します。
scponlyを試してください。これは、sshではなくscpのみを有効にする特別なシェルであり、chrootされたバージョンscponlycもあります。
Rsshの設定は簡単ではありません。基本的に、jail内で実行するすべてのもののbinaries/libraries/configを使用してchroot/jailを構築する必要があります。
Debianシステムには、これを行うためのツールがいくつかあります。たとえば、 makejail 、またはrsshdocsディレクトリ/usr/share/doc/rssh/examples/mkchroot.sh
に含まれているスクリプトです。
まだ読んでいない場合は、/usr/share/doc/rssh/
の下にあるrsshに関連するすべてのドキュメントと、 rssh および rssh.conf のマニュアルページを確認する必要があります。 zless /usr/share/doc/rssh/CHROOT.gz
を実行して表示するCHROOTファイルを具体的に確認する必要があります。
ユーザーを制限しようとしている場合、本当にシェルアクセスが必要ですか?または、それらをsftpに完全に制限することは有効な選択ですか?ファイルを転送するだけでよい場合は、このサーバー障害検索の結果を確認してください。 ( ForceCommand internal-sftp )