CC规则默认忽略常用文件

This commit is contained in:
刘祥超
2024-04-16 14:14:31 +08:00
parent dd63154bf7
commit 18fcc43326
3 changed files with 4 additions and 2 deletions

View File

@@ -92,7 +92,7 @@ Vue.component("http-firewall-checkpoint-cc", {
let keys = []
let period = 60
let threshold = 1000
let ignoreCommonFiles = false
let ignoreCommonFiles = true
let enableFingerprint = true
let options = {}
@@ -246,7 +246,7 @@ Vue.component("http-firewall-checkpoint-cc", {
<td>忽略常用文件</td>
<td>
<checkbox v-model="ignoreCommonFiles"></checkbox>
<p class="comment">忽略js、css、jpg等常在网页里被引用的文件名可以减少误判几率。</p>
<p class="comment">忽略js、css、jpg等常在网页里被引用的文件名即对这些文件的访问不加入计数,可以减少误判几率。</p>
</td>
</tr>
</table>

View File

@@ -11,6 +11,7 @@
<td class="title">规则集名称 *</td>
<td>
<input type="text" name="name" maxlength="100" ref="focus"/>
<p class="comment">可以用来描述当前规则集用途。</p>
</td>
</tr>
<tr>

View File

@@ -9,6 +9,7 @@
<td class="title">规则集名称 *</td>
<td>
<input type="text" name="name" maxlength="100" ref="focus" v-model="setConfig.name"/>
<p class="comment">可以用来描述当前规则集用途。</p>
</td>
</tr>
<tr>