WAF规则中增加${requestURL}参数

This commit is contained in:
GoEdgeLab
2022-06-09 19:43:52 +08:00
parent 86e0cb4542
commit 84b5f20687

View File

@@ -48,13 +48,19 @@ var AllCheckpoints = []*HTTPFirewallCheckpointDefinition{
{
Name: "请求URI",
Prefix: "requestURI",
Description: "包含URL参数的请求URI比如/hello/world?lang=go",
Description: "包含URL参数的请求URI类似于 /hello/world?lang=go",
IsRequest: true,
},
{
Name: "请求路径",
Prefix: "requestPath",
Description: "不包含URL参数的请求路径比如/hello/world",
Description: "不包含URL参数的请求路径类似于 /hello/world",
IsRequest: true,
},
{
Name: "请求URL",
Prefix: "requestURL",
Description: "完整的请求URL包含协议、域名、请求路径、参数等类似于 https://example.com/hello?name=lily",
IsRequest: true,
},
{