码迷,mamicode.com
首页 > 其他好文 > 详细

防止dos攻击

时间:2018-05-27 17:16:06      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:wal   ack   source   for   httpd   log   dos   txt   fir   

#!/bin/bash
while [ 1 -eq 1 ] 
do
block_ip=`awk ‘{IP[$1]++} END{for (i in IP) {print i,IP[i]}}‘ /var/log/httpd/access_log | awk ‘$2>1000{print $1}‘`
block_source=`firewall-cmd --zone=block --list-sources`
flag=0
for i in $block_ip
do
	flag2=1
	for j in $block_source
	do
	if [ "$i" == "$j" ];then
		flag2=0
		break
	fi
	done
	if [ $flag2 -eq 1 ];then
		echo "添加黑名单$i" >> black_ip.txt
		firewall-cmd --permanent --zone=block --add-source=$i >> black_ip.txt
		flag=1
	fi
done
if [ $flag -eq 1 ];then
	firewall-cmd --reload >> black_ip.txt
fi
sleep 2 
done

  

防止dos攻击

标签:wal   ack   source   for   httpd   log   dos   txt   fir   

原文地址:https://www.cnblogs.com/dccrussell/p/9096513.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!