-
Notifications
You must be signed in to change notification settings - Fork 419
8 header_Mod
star edited this page Jan 7, 2018
·
2 revisions
header_Mod header头规则模块
(对应配置文件:conf_json/header_Mod.json)
该模块是整个访问控制规则的 第8步 用于配置header访问控制
[
{
"state": "on",
# 该条规则开关(on/off)
"uri": ["*",""],
# uri匹配规则;第一个参数:匹配内容,第二个:匹配方式,字符串等于(该条规则匹配任何字符串)
"hostname": ["*",""],
# host匹配规则;第一个参数:匹配内容,第二个:匹配方式,字符串等于(该条规则匹配任何字符串)
"header": ["*","",["Acunetix_Aspect","end"]]
# header匹配规则
# 第一个参数:匹配内容,第二个:匹配方式,字符串匹配,第三个:匹配header配置
# 匹配header位置:第一个参数:匹配header名称,第二个:匹配位置(end/all/数字)
# end:匹配最后一位,all:匹配所有位置, 数字:匹配指定位置
},
{
"state": "on",
"uri": ["*",""],
"hostname": ["*",""],
"header": ["*","",["X_Scan_Memo","all"]]
}
]