我有一个EC2实例,它通过OpenSSH在Amazon (CentOS)上运行SFTP。我想运行一些测试来检查我不知道的漏洞,并且我想运行监视软件来监视可疑的行为。有什么可用的/建议?免费是很好的,但支付服务也是可以的。
# SFTP Users
Match Group sftpusers
PasswordAuthentication yes
ChrootDirectory /sftp/%u
ForceCommand internal-sftp -l DEBUG3 # -l INFO enables logging to /var/log/secure
AllowTcpForwarding no
PermitTunnel no
X11Forwarding no
# SFTP Admins
Match Group sftpadmins
PasswordAuthentication yes
ChrootDirectory /sftp/
ForceCommand internal-sftp -l DEBUG3 # -l INFO enables logging to /var/log/secure
AllowTcpForwarding no
PermitTunnel no
X11Forwarding nohttps://serverfault.com/questions/808396
复制相似问题