咨询热线:4006-75-4006

售前:9:00-23:30    备案:9:00-18:00    技术:7*24h

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

2019-08-27 23:12:36 9226次

#!/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


首页
最新活动
个人中心