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.
1Panel/plugins/openresty/waf/rules/acl.json

25 lines
461 B

{
"rules": [
{
"state": "on",
"name": "no cookie",
"conditions": [
{
"field": "URL",
"pattern": "eq",
"rule": "/test/\\d+\\.html"
},
{
"field": "Cookie",
"pattern": "eq",
"rule": ""
}
],
"action": "deny",
"res": "",
"ipBlock": "off",
"ipBlockTime": 60,
"description": "拦截不带Cookie的请求"
}
]
}