服务热线
400-812-3495
云服务器 ECS Linux 常见安全检查方法 发布时间:2017-05-11
|
本文就云服务器 ECS Linux 常见安全检查方法进行概要说明: 一、检查系统密码文件,查看文件修改日期 # ls -l /etc/passwd
# awk -F: '$3= =0 {print $1}' /etc/passwd
# awk -F: 'length($2)= =0 {print $1}' /etc/shadow
# cat /etc/inetd.conf | grep -v "^#"
# netstat –an # netstat –rn # ifconfig –a
# last
# find / -name core -exec ls -l {} \;
# rpm –qf /bin/ls # rpm -qf /bin/login # md5sum –b 文件名 # md5sum –t 文件名 九、查找是否有后门 # cat /etc/crontab # ls /var/spool/cron/ # cat /etc/rc.d/rc.local # ls /etc/rc.d # ls /etc/rc3.d # find / -type f -perm 4000
|