1 Star 0 Fork 13

ansu/cc_iptables

forked from aqztcom/cc_iptables 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ddos1.sh 391 Bytes
一键复制 编辑 原始数据 按行查看 历史
ppabc 提交于 2014-10-16 14:12 . ddos1
#!/bin/bash
##http://blog.liuts.com/post/101/#topreply
/bin/netstat -na|grep ESTABLISHED|awk {print $5}|awk -F: {print $1}|sort|uniq -c|sort -rn|head -10|grep -v -E 192.168|127.0|awk {if ($2!=null && $1>4) {print $2}}>/tmp/dropip
for i in $(cat /tmp/dropip)
do
/sbin/iptables -A INPUT -s $i -j DROP
echo "$i kill at `date`">>/var/log/ddos
done
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Shell
1
https://gitee.com/ansusun/cc_iptables.git
git@gitee.com:ansusun/cc_iptables.git
ansusun
cc_iptables
cc_iptables
master

搜索帮助