我有一个 EC2 实例,它在 Amazon Linux(CentOS)上通过 OpenSSH 运行 SFTP。我想运行一些测试来检查我不知道的漏洞,并且我想运行监视软件来监视可疑行为。有什么可用/建议的?免费很好,但付费服务也可以。
一些注释
- 唯一能够通过 SSH 连接的用户是 ec2-user,并且该用户需要使用 pem 密钥
- 连接到系统的客户必须将其 IP 列入 EC2 安全组的白名单
sshd_config 设置
# 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 no