Commit d228e7b8 by Joneq

修改代码

parent 049ee80c
Showing with 8 additions and 4 deletions
......@@ -90,11 +90,17 @@ if wafcheck.WhiteIp(user_ip) == 'exist' or wafcheck.WhiteUrl(temp_uri) == 'exist
end
ngx.say(wafcheck.BlackIp(user_ip))
ngx.exit(ngx.HTTP_FORBIDDEN)
ngx.say(1)
-- 黑名单存在直接302
if wafcheck.BlackIp(user_ip) == 'exist' or wafcheck.BlackUrl(temp_uri) == 'exist' or wafcheck.BlackHeader(user_ip) == 'exist' then
ngx.say(wafcheck.BlackIp(user_ip))
ngx.exit(ngx.HTTP_FORBIDDEN)
ngx.say(1)
return
end
......@@ -409,9 +415,7 @@ res , err = red:expire(spider_time .. user_ip , spider_key_exit_time)
res , err = red:expire(spider_count .. user_ip , spider_key_exit_time)
local ok , err = red:close()
ngx.say(ok)
ngx.say(err)
ngx.exit(ngx.HTTP_FORBIDDEN)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment