博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
不管肉鸡,还是代理,CC识别就封杀!
阅读量:6712 次
发布时间:2019-06-25

本文共 4430 字,大约阅读时间需要 14 分钟。

这几天的心得,汇成代码。

PYTHON版,我编的。

#!/usr/bin/env python# -*- coding: utf-8 -*-import os,sys,timeimport commands,logging#以下为手工命令时的动作#time format 17/Oct/2014:10:00:00#time format Sat Oct 18 12:35:43 2014#awk '$4>"[17/Oct/2014:14:00:00"&&$4<"[17/Oct/2014:14:02:00"' xxx.log|awk '{a[$7]++}END{for(i in a)print a[i],i}'|sort -n|tail -n 10|column -t | 500#awk '$4>"[17/Oct/2014:14:00:00"&&$4<"[17/Oct/2014:14:02:00"' xxx.log|grep 'uc_server/images/noavatar_small.gif'|awk '{a[$1]++}END{for(i in a)print a[i],i}'|sort -n|tail -n 10|column -t | 100#定义预警触发时的CC访问数及IP访问CC网址的次数urlAlert = 500ipAlert = 50print 'urlAler is:',urlAlert, ', ipAlert is:', ipAlert#定义LOG文件地址logPath = "xxx.log"#120秒的处理间隔endtime = time.time()strEndTime = time.ctime(endtime).split()strBeginTime = time.ctime(endtime-120).split()#规整格式,使PYTHON时间格式对应NGINX的日志时间格式endTime = "%s/%s/%s:%s"%(strEndTime[2],strEndTime[1],strEndTime[4],strEndTime[3])beginTime = "%s/%s/%s:%s"%(strBeginTime[2],strBeginTime[1],strBeginTime[4],strBeginTime[3])#LOGGIN记录功能logging.basicConfig(level=logging.INFO,                format='%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s',                datefmt='%a, %d %b %Y %H:%M:%S',                filename='XXX.log',                filemode='a')#通用的命令处理函数def exec_Cmd(Cmd):    (status,output) = commands.getstatusoutput(Cmd)    try:        if int(status) == 0:            print Cmd + " is OK!"            logging.info(Cmd + " ---is OK!")            return output        else:            logging.info(Cmd + " cant't finish...")            print Cmd + " can't finish...."            sys.exit(1)    except:        logging.info(Cmd + " is Wrong")        print Cmd + " is Wrong!"        sys.exit(1)#获取最可能的CC的URL列表def CCDef_url():    global urlAlert, logPath, beginTime, endTime    #封装BASH SHELL命令,搜索日志为当前时间前两分钟内,也可以用TAIL -F,省时间,AWK语法我有些搞不懂,运维兄弟提供    urlCmd = "awk '$4>\"[" + beginTime + "\"&&$4<\"[" + endTime + "\"' " + logPath + "|awk '{a[$7]++}END{for(i in a)print a[i],i}'|sort -n|tail -n 10|column -t"    urlOutput = exec_Cmd(urlCmd)    urlList = []    #规范输出格式并获取大于预警的URL地址列表    for line in (urlOutput.split('\n')):    urlCountList = line.split()    if int(urlCountList[0]) > urlAlert:        urlList.append(urlCountList[1])        #logging.info("cc's url is:", urlCountList[1])    return urlList#获取访问过这些URL的IP地址列表def CCDef_ip(urlList):    global ipAlert, logPath, beginTime, endTime    ipList = []    for url in urlList:        #更改一下AWK,获取        ipCmd = "awk '$4>\"[" + beginTime + "\"&&$4<\"[" + endTime + "\"' " + logPath + "|grep " + url + "|awk '{a[$1]++}END{for(i in a)print a[i],i}'|sort -n|tail -n 10|column -t"    ipOutput = exec_Cmd(ipCmd)    #规范输出格式并获取大于预警的IP地址列表        for line in (ipOutput.split('\n')):            ipCountList = line.split()            if int(ipCountList[0]) > ipAlert:                ipList.append(ipCountList[1])                #logging.info("cc's url is:", urlCountList[1])    return ipList#将最可以疑的攻击IP加入防火墙def dropIptables(ipList):    drop_ip_list = []    #先列出已有的IPTABLES的IP,达到过滤,去重的目的    iptablesOutput = exec_Cmd('iptables -vnL')    for line in iptablesOutput.split('\n'):    line = line.split()    if not line[0].isdigit():            continue    drop_ip_list.append(line[7])    for ip in ipList:    if ip in drop_ip_list:        continue    dropCmd = "iptables -I INPUT -s " + ip + " -j DROP"    print dropCmd    #干之!!!    exec_Cmd(dropCmd)def main():    urlList = CCDef_url()    ipList = CCDef_ip(urlList)    print ipList    dropIptables(ipList)    passif __name__=="__main__":    main()

BASH SHELL版,运维兄弟写的,真的省好多行。要好好攻一下SHELL脚本了。

#!/bin/bash#while true#do        tail -f XXX.log > url.txt &        echo "wait 120s"        sleep 120s        kill -9 `ps -ef | grep "tail -f" | grep -v grep | awk '{print $2}' | xargs` > /dev/null        sleep 1        one=`head -1 url.txt | awk '{print $4}'`        two=`tail -1 url.txt | awk '{print $4}'`        #awk -v one=$one -v two=$two '$4>one&&$4
one&&$4
500) print $2}' | xargs` echo $url_max >> url.log for i in $url_max do ipaddress=`awk -v one=$one -v two=$two '$4>one&&$4
100) print $2}'|xargs` for ip in $ipaddress do iptables -L -n | grep "$ip" if [ $? != 0 ] then echo $ip >> url.log iptables -I INPUT -s $ip -j DROP fi done done#done

 

转载地址:http://uxhlo.baihongyu.com/

你可能感兴趣的文章
表格存储Tablestore权威指南(持续更新)
查看>>
java B2B2C源码电子商城系统-Kafka快速入门
查看>>
Spring Cloud云服务 - HongHu架构common-service 项目构建过程
查看>>
hadoop中hive原理及安装
查看>>
pear默认安装后一个小bug
查看>>
nginx-通过Nginx统计当前每个域名流量
查看>>
OpenSSL学习(二十五):基础-指令x509
查看>>
sql server随机函数
查看>>
WinAircrackPack 破解你邻居家的无线WIFI密码
查看>>
自定义格式化字符串
查看>>
bgp发布路由对端无法收到,原因是使用默认网段
查看>>
JQuery实现简单的服务器轮询效果
查看>>
幽灵漏洞(GHOST)影响大量Linux操作系统及其发行版(更新修复方案)
查看>>
Sunday算法
查看>>
netstat
查看>>
优朋普乐:OTT正重构电视版图
查看>>
遇到"process launch failed: Security"问题,解决的一种方法
查看>>
Ubuntu 14.04 LTC 有线网络——网线不识别,灯不亮问题
查看>>
Unity3D DLL加密
查看>>
求数组中最长递增子序列
查看>>