Update anti-cc.lua

pull/8/head
有安科技 2022-09-23 22:07:33 +08:00 committed by GitHub
parent 41c37b9d1f
commit b3907f2f28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -17,13 +17,13 @@ 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 true, ccIp, true return waf.block(true)
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, 300, 2) -- 设置5分钟也就是300秒拦截时间
end end
end end