将ssh失败的用户放入hosts.deny中
1.find / -name secure
找到linux系统安全日志文件
2.cp `find / -name secure` /tmp/`date +%F`
将secure文件复制出来
或者使用find -exec或xrags
3.grep "Failed password" secure | awk '{print "sshd:"$11}' | sort | uniq>> /etc/hosts.deny
posted on 2019-03-09 15:14 vanspumakappa 阅读(170) 评论(0) 编辑 收藏 举报