帮助中心 >  技术知识库 >  云服务器 >  服务器教程 >  CentOS7防止恶意破解root账户的脚本

CentOS7防止恶意破解root账户的脚本

2019-08-27 23:12:36 4618

#!/bin/bash


#Denyhosts SHELL SCRIPT


#2017-01-24


#


#When a IP is accessed 50 times through sshd, it is written to the hosts.deny file, 


#which prohibits the IP from connecting to the host via sshd


#


#Add to timing task




cat /var/log/secure | awk '/Failed/{print $(NF-3)}' | sort | uniq -c | awk '{print $2"="$1;}' > /root/black.txt




DEFINE=50


for i in $(cat /root/black.txt)


do


    IP=$( $i | awk -F'=' '{print $1}')


    NUM=$( $i | awk -F'=' '{print $2}')


    if [$NUM -gt $DEFINE]; then


        grep $IP /etc/hosts.deny > /dev/null


        if [$? -gt 0];then


            echo "sshd:$IP" >> /etc/hosts.deny


        fi


    fi


done


提交成功!非常感谢您的反馈,我们会继续努力做到更好!

这条文档是否有帮助解决问题?

非常抱歉未能帮助到您。为了给您提供更好的服务,我们很需要您进一步的反馈信息:

在文档使用中是否遇到以下问题: