mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-08 07:50:28 +08:00
WAF增加Javascript cookie验证
This commit is contained in:
@@ -78,8 +78,11 @@ Vue.component("http-firewall-actions-box", {
|
|||||||
captchaLife: "",
|
captchaLife: "",
|
||||||
captchaMaxFails: "",
|
captchaMaxFails: "",
|
||||||
captchaFailBlockTimeout: "",
|
captchaFailBlockTimeout: "",
|
||||||
|
|
||||||
get302Life: "",
|
get302Life: "",
|
||||||
|
|
||||||
post307Life: "",
|
post307Life: "",
|
||||||
|
|
||||||
recordIPType: "black",
|
recordIPType: "black",
|
||||||
recordIPLevel: "critical",
|
recordIPLevel: "critical",
|
||||||
recordIPTimeout: "",
|
recordIPTimeout: "",
|
||||||
@@ -97,7 +100,11 @@ Vue.component("http-firewall-actions-box", {
|
|||||||
goGroup: null,
|
goGroup: null,
|
||||||
|
|
||||||
goSetId: 0,
|
goSetId: 0,
|
||||||
goSetName: ""
|
goSetName: "",
|
||||||
|
|
||||||
|
jsCookieLife: "",
|
||||||
|
jsCookieMaxFails: "",
|
||||||
|
jsCookieFailBlockTimeout: ""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
@@ -195,8 +202,32 @@ Vue.component("http-firewall-actions-box", {
|
|||||||
} else {
|
} else {
|
||||||
this.goSetName = set.name
|
this.goSetName = set.name
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
jsCookieLife: function (v) {
|
||||||
|
v = parseInt(v)
|
||||||
|
if (isNaN(v)) {
|
||||||
|
this.actionOptions["life"] = 0
|
||||||
|
} else {
|
||||||
|
this.actionOptions["life"] = v
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
jsCookieMaxFails: function (v) {
|
||||||
|
v = parseInt(v)
|
||||||
|
if (isNaN(v)) {
|
||||||
|
this.actionOptions["maxFails"] = 0
|
||||||
|
} else {
|
||||||
|
this.actionOptions["maxFails"] = v
|
||||||
|
}
|
||||||
|
},
|
||||||
|
jsCookieFailBlockTimeout: function (v) {
|
||||||
|
v = parseInt(v)
|
||||||
|
if (isNaN(v)) {
|
||||||
|
this.actionOptions["failBlockTimeout"] = 0
|
||||||
|
} else {
|
||||||
|
this.actionOptions["failBlockTimeout"] = v
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
add: function () {
|
add: function () {
|
||||||
this.action = null
|
this.action = null
|
||||||
@@ -207,10 +238,17 @@ Vue.component("http-firewall-actions-box", {
|
|||||||
// 动作参数
|
// 动作参数
|
||||||
this.blockTimeout = ""
|
this.blockTimeout = ""
|
||||||
this.blockScope = "global"
|
this.blockScope = "global"
|
||||||
|
|
||||||
this.captchaLife = ""
|
this.captchaLife = ""
|
||||||
this.captchaMaxFails = ""
|
this.captchaMaxFails = ""
|
||||||
this.captchaFailBlockTimeout = ""
|
this.captchaFailBlockTimeout = ""
|
||||||
|
|
||||||
|
this.jsCookieLife = ""
|
||||||
|
this.jsCookieMaxFails = ""
|
||||||
|
this.jsCookieFailBlockTimeout = ""
|
||||||
|
|
||||||
this.get302Life = ""
|
this.get302Life = ""
|
||||||
|
|
||||||
this.post307Life = ""
|
this.post307Life = ""
|
||||||
|
|
||||||
this.recordIPLevel = "critical"
|
this.recordIPLevel = "critical"
|
||||||
@@ -287,6 +325,20 @@ Vue.component("http-firewall-actions-box", {
|
|||||||
this.captchaFailBlockTimeout = config.options.failBlockTimeout.toString()
|
this.captchaFailBlockTimeout = config.options.failBlockTimeout.toString()
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
|
case "jsCookie":
|
||||||
|
this.jsCookieLife = ""
|
||||||
|
if (config.options.life != null || config.options.life > 0) {
|
||||||
|
this.jsCookieLife = config.options.life.toString()
|
||||||
|
}
|
||||||
|
this.jsCookieMaxFails = ""
|
||||||
|
if (config.options.maxFails != null || config.options.maxFails > 0) {
|
||||||
|
this.jsCookieMaxFails = config.options.maxFails.toString()
|
||||||
|
}
|
||||||
|
this.jsCookieFailBlockTimeout = ""
|
||||||
|
if (config.options.failBlockTimeout != null || config.options.failBlockTimeout > 0) {
|
||||||
|
this.jsCookieFailBlockTimeout = config.options.failBlockTimeout.toString()
|
||||||
|
}
|
||||||
|
break
|
||||||
case "notify":
|
case "notify":
|
||||||
break
|
break
|
||||||
case "get_302":
|
case "get_302":
|
||||||
@@ -539,6 +591,11 @@ Vue.component("http-firewall-actions-box", {
|
|||||||
<span v-if="config.options.maxFails > 0"> / 最多失败{{config.options.maxFails}}次</span>
|
<span v-if="config.options.maxFails > 0"> / 最多失败{{config.options.maxFails}}次</span>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
<!-- js cookie -->
|
||||||
|
<span v-if="config.code == 'js_cookie' && config.options.life > 0">:有效期{{config.options.life}}秒
|
||||||
|
<span v-if="config.options.maxFails > 0"> / 最多失败{{config.options.maxFails}}次</span>
|
||||||
|
</span>
|
||||||
|
|
||||||
<!-- get 302 -->
|
<!-- get 302 -->
|
||||||
<span v-if="config.code == 'get_302' && config.options.life > 0">:有效期{{config.options.life}}秒</span>
|
<span v-if="config.code == 'get_302' && config.options.life > 0">:有效期{{config.options.life}}秒</span>
|
||||||
|
|
||||||
@@ -638,6 +695,38 @@ Vue.component("http-firewall-actions-box", {
|
|||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
|
<!-- js cookie -->
|
||||||
|
<tr v-if="actionCode == 'js_cookie'">
|
||||||
|
<td>有效时间</td>
|
||||||
|
<td>
|
||||||
|
<div class="ui input right labeled">
|
||||||
|
<input type="text" style="width: 5em" maxlength="9" v-model="jsCookieLife" @keyup.enter="confirm()" @keypress.enter.prevent="1"/>
|
||||||
|
<span class="ui label">秒</span>
|
||||||
|
</div>
|
||||||
|
<p class="comment">验证通过后在这个时间内不再验证;如果为空或者为0表示默认。</p>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr v-if="actionCode == 'js_cookie'">
|
||||||
|
<td>最多失败次数</td>
|
||||||
|
<td>
|
||||||
|
<div class="ui input right labeled">
|
||||||
|
<input type="text" style="width: 5em" maxlength="9" v-model="jsCookieMaxFails" @keyup.enter="confirm()" @keypress.enter.prevent="1"/>
|
||||||
|
<span class="ui label">次</span>
|
||||||
|
</div>
|
||||||
|
<p class="comment">允许用户失败尝试的最多次数,超过这个次数将被自动加入黑名单;如果为空或者为0表示默认。</p>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr v-if="actionCode == 'js_cookie'">
|
||||||
|
<td>失败拦截时间</td>
|
||||||
|
<td>
|
||||||
|
<div class="ui input right labeled">
|
||||||
|
<input type="text" style="width: 5em" maxlength="9" v-model="jsCookieFailBlockTimeout" @keyup.enter="confirm()" @keypress.enter.prevent="1"/>
|
||||||
|
<span class="ui label">秒</span>
|
||||||
|
</div>
|
||||||
|
<p class="comment">在达到最多失败次数(大于0)时,自动拦截的时间;如果为空或者为0表示默认。</p>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
<!-- get_302 -->
|
<!-- get_302 -->
|
||||||
<tr v-if="actionCode == 'get_302'">
|
<tr v-if="actionCode == 'get_302'">
|
||||||
<td>有效时间</td>
|
<td>有效时间</td>
|
||||||
|
|||||||
Reference in New Issue
Block a user