--[[ 规则名称: 区域访问限制 过滤阶段: 请求阶段 危险等级: 低危 规则描述: 限制非大陆地区访问网站 --]] if waf.contains(waf.ip,":") then return false end local country, province, city = waf.ip2loc(waf.ip) if country ~= "中国" and city ~= "内网IP" then return true, "限制非大陆地区访问", true end return false