概述
#!/usr/local/python/bin/python
# -*- coding: utf-8 -*-
import sys,time,commands,linecache
import subprocess
from urlparse import urlparse
from tailf import tailf
import shutil,struct,socket
ip_max_count = 100
def str2int(str):
uint = socket.ntohl(struct.unpack("I",socket.inet_aton(str))[0])
return struct.unpack("i", struct.pack('I', uint))[0]
cur_ip_cache = {}
commands.getstatusoutput("/home/nginx/sbin/nginx -s reload")
time.sleep(5)
fh=open('/home/nginx/conf/v42_zhaoren_deny.conf.python','r')
for line in fh.readlines():
if line[0:4] == "deny":
ip_temp = line.split(' ')[1][0:-2].strip().lstrip()
cur_ip_cache[ip_temp] = ip_max_count+1
fh.close()
log_file = "/home/nginx/logs/access.cn.log"
for line in tailf(log_file):
parse_info = line.split(' ')
ip_address = parse_info[0].strip()
log_time = parse_info[1]+parse_info[2]
if not cur_ip_cache.has_key(ip_address):
cur_ip_cache[ip_address] = 1
else:
#print cur_ip_cache[ip_address]
if cur_ip_cache[ip_address] < ip_max_count:
cur_ip_cache[ip_address] += 1
if cur_ip_cache[ip_address] == ip_max_count:
f=open('zhaoren.log','a')
f.write(log_time+"tt"+ip_address+"n")
f.close()
f=open('/home/nginx/conf/access_deny.conf.python','a')
f.write("deny t"+ip_address+";n")
f.close()
shutil.copyfile("/home/nginx/conf/access_deny.conf.python", "/home/nginx/conf/access_deny.conf")
#temp = commands.getstatusoutput("/home/nginx/sbin/nginx -s reload")
最后
以上就是美满音响为你收集整理的python分析nginx根据每日请求量自动屏蔽的全部内容,希望文章能够帮你解决python分析nginx根据每日请求量自动屏蔽所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复