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.
uuWAF/rules/ip-block.lua

19 lines
303 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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