Browse Source

Merge branch 'HEAD' of https://github.com/Safe3/uuWAF

pull/8/head
Safe3 2 years ago
parent
commit
3adf23d166
  1. 9
      rules/anti-cc.lua

9
rules/anti-cc.lua

@ -17,14 +17,15 @@ local sh = ngx.shared.ipCache
local ccIp = 'cc-' .. waf.ip local ccIp = 'cc-' .. waf.ip
local c, f = sh:get(ccIp) local c, f = sh:get(ccIp)
if not c then if not c then
sh:set(ccIp, 0, 60, 1) -- 设置1分钟也就是60秒访问计数时间 sh:set(ccIp, 1, 60, 1) -- 设置1分钟也就是60秒访问计数时间
else else
if f == 2 then if f == 2 then
return waf.block(true) return waf.block(true) -- 重置TCP连接,不记录日志
end end
sh:incr(ccIp, 1) sh:incr(ccIp, 1)
if c >= 360 then if c + 1 >= 360 then
sh:set(ccIp, c, 300, 2) -- 设置5分钟也就是300秒拦截时间 sh:set(ccIp, c + 1, 300, 2) -- 设置5分钟也就是300秒拦截时间
return true, ccIp, true
end end
end end

Loading…
Cancel
Save