#!/bin/bash
SCANIP=`grep "Failed" /var/log/secure | awk ‘{print $(NF-3)}‘| sort |uniq -c | awk ‘{print $1":"$2}‘ |awk -F: ‘$1 >= 50 {print $2}‘`
for i in $SCANIP
do
if [ -z "`iptables -vnL INPUT | grep $i`" ];then
iptables -I INPUT -s $i -j DROP
fi
done
linux 防暴力破解
Posted 一只宅男的自我修养
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 防暴力破解相关的知识,希望对你有一定的参考价值。
以上是关于linux 防暴力破解的主要内容,如果未能解决你的问题,请参考以下文章