用SHELL脚本来防止SSH和vsftpd暴力破解
为防止恶意攻击服务器,特写了如下脚本,并放入crontab中(**/1***rootsh/root/hosts_deny.sh),每小时运行一次
#!/bin/bash
cat/var/log/secure|awk'/Failed/{print$(NF-3)}'|sort|uniq-c|awk'{print$2"="$1;}'>/root/black.txt
DEFINE="100"
foriin`cat/root/black.txt`
do
IP=`echo$i|awk-F='{print$1}'`
NUM=`echo$i|awk-F='{print$2}'`
if[$NUM-gt$DEFINE];
then
grep$IP/etc/hosts.deny>/dev/null
if[$?-gt0];
then
echo"sshd:$IP">>/etc/hosts.deny
echo"vsftpd:$IP">>/etc/hosts.deny
fi
fi
done
相关推荐
hickwu 2020-10-23
杨立峰 2020-08-18
diediexiaomi 2020-08-11
wq0 2020-07-18
leodengzx 2020-06-28
liyansring 2020-06-21
jiahaohappy 2020-06-21
leodengzx 2020-06-14
xsg 2020-06-09
piaotiejun 2020-06-07
TangCuYu 2020-06-05
clmngu 2020-06-03
河的第三条岸 2020-05-31
atb 2020-05-30
书弋江山 2020-05-30
LWLWLiang 2020-05-28
JJandYY 2020-05-25
饮马天涯 2020-05-20
wennuanwarm 2020-05-16