一款社区驱动的免费、高性能、高扩展顶级Web应用和API安全防护产品
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 lines
303 B

--[[
规则名称: IP block
过滤阶段: 请求阶段
危险等级: 低危
规则描述: 手动添加对恶意IP进行封禁,类似IP黑名单
--]]
local ip = waf.ip
if waf.startWith(ip,"10.20.11.") then
return waf.block(true) -- 重置TCP连接,不记录日志
end
return false