Skip to content

Commit 63bde91

Browse files
committed
fix enable nuclei fuzz 2022-10-08
1 parent 23f1753 commit 63bde91

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

brute/filefuzz.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,8 @@ func FileFuzz(u string, indexStatusCode int, indexContentLength int, indexbody s
205205
// 异步接收结果
206206
var async_data = make(chan *FuzzData, util.Fuzzthreads*2)
207207
var async_technologies = make(chan []string, util.Fuzzthreads*2)
208-
// 字典长度的 70% 的错误
209-
var MaxErrorTimes int32 = int32(float32(len(filedic)) * 0.7)
208+
// 字典长度的 30% 的错误
209+
var MaxErrorTimes int32 = int32(float32(len(filedic)) * 0.3)
210210
if strings.HasPrefix(url404req.Protocol, "HTTP/2") || strings.HasPrefix(url404req.Protocol, "HTTP/3") {
211211
MaxErrorTimes = int32(len(filedic))
212212
}

config/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"ReportingConfig": "config/nuclei_esConfig.yaml"
8989
},
9090
"enableByWaf": true,
91-
"enableDevDebug": true,
91+
"enableDevDebug": false,
9292
"enableEmbedYaml": true,
9393
"enableFileFuzz": true,
9494
"httpx": {

config/scan4all_db.db

1.27 MB
Binary file not shown.

projectdiscovery/nuclei_Yaml/nuclei_yaml.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ func readConfig(options *types.Options) {
212212

213213
options.Authors = []string{}
214214
options.Tags = []string{}
215-
options.ExcludeTags = []string{"fuzz"}
215+
options.ExcludeTags = []string{} // "fuzz"
216216
options.IncludeTags = []string{}
217217
options.IncludeIds = []string{}
218218
options.ExcludeIds = []string{}

0 commit comments

Comments
 (0)