WAF检查项增加“所有报头名称”

This commit is contained in:
GoEdgeLab
2023-12-08 15:39:23 +08:00
parent a070c375e5
commit 8a8ad28100
3 changed files with 63 additions and 0 deletions

View File

@@ -226,6 +226,14 @@ var AllCheckpoints = []*CheckpointDefinition{
Instance: new(RequestHeadersCheckpoint),
Priority: 100,
},
{
Name: "所有请求报头名称",
Prefix: "headerNames",
Description: "使用换行符(\\n隔开的报头名称字符串每行一个名称",
HasParams: false,
Instance: new(RequestHeaderNamesCheckpoint),
Priority: 100,
},
{
Name: "单个Header值",
Prefix: "header",