簡體   English   中英

SFTP-覆蓋權限(文件掩碼,所有者/組)

[英]SFTP - overriden permissions (filemask, owner/group)

我正在運行OpenSSH sftp服務器(Linux,Raspbian),並且FileZilla用作客戶端。 我遇到的問題是用戶可以刪除服務器上的任何文件,而無需考慮文件掩碼或所有者/組:

登錄的用戶:

cat /etc/passwd | grep sftp     
sftp-guest:x:1001:1004:::/sbin/nologin

組:

cat /etc/group | grep sftp-only
sftp-only:x:1004:

這是我的/ etc / ssh / sshd_config-文件(陰影端口):

# Package generated configuration file
# See the sshd_config(5) manpage for details

# What ports, IPs and protocols we listen for
Port ***33
# 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
Banner /sftp/welcome_message

# Allow client to pass locale environment variables
#AcceptEnv LANG LC_*

# 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

Subsystem sftp internal-sftp

Match group *,!sftp-only,!pi
        ForceCommand internal-sftp
        ChrootDirectory /sftp/empty

Match group sftp-only
        ChrootDirectory /sftp/%u
        AllowTCPForwarding no
        X11Forwarding no
        ForceCommand internal-sftp

如您在sshd_config中所看到的,用戶sftp-guest被chroot到/ sftp / sftp-guest中。
在這里,您可以看到文件/文件夾的權限:

ll /sftp | grep sftp-guest
drwxr-xr-x  3 root root 4096 Dec 20 02:26 sftp-guest

ll /sftp/sftp-guest/
drwxrwxr-x 9 sftp-guest pi   4096 Apr 18 22:18 maturaprojekt

ll /sftp/sftp-guest/data/
---------- 1 sftp-guest sftp-only  205 Apr 18 22:06 readme
---------- 1 root       root       205 Apr 18 22:18 readme2

問題在於,可以使用Filezilla或通過sftp(命令行)刪除兩個文件(readme,readme2)。 可以重命名或更改權限。

編輯->
嘗試查看或下載這些文件時,傳輸失敗!
FileZilla中,日志:

Command:    get "readme" "/tmp/fz3temp-1/readme"
Error:  /data/readme: open for read: permission denied
Error:  File transfer failed

Command:    get "readme" "/home/michael/data/readme"
Error:  /data/readme: open for read: permission denied
Error:  File transfer failed

<-編輯

我的問題是現在如何防止這種行為?

刪除文件的權利在父文件夾上:如果該文件夾可寫,則可以在其中刪除文件。 嘗試使用chmod -w /sftp/sftp-guest/data/來防止sftp-guest刪除自述文件(您也可以使它們可讀以修復上一次編輯)。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM