Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions pkg/scanning/parameterAnalysis.go
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,11 @@ func ParameterAnalysis(target string, options model.Options, rl *rateLimiter) ma
}

var wgg sync.WaitGroup
const maxConcurrency = 1000 // Define a reasonable maximum limit
concurrency := options.Concurrence
if concurrency > maxConcurrency {
concurrency = maxConcurrency
}
paramsQue := make(chan string, concurrency)
results := make(chan model.ParamResult, concurrency)
miningDictCount := 0
Expand Down
Loading