Update check.go

This commit is contained in:
影舞者
2023-11-13 11:57:13 +08:00
committed by GitHub
parent 7eb2bccde7
commit f51291512c
+1 -1
View File
@@ -33,7 +33,7 @@ func CheckMultiPoc(req *http.Request, pocs []*Poc, workers int) {
for task := range tasks { for task := range tasks {
isVul, _, name := executePoc(task.Req, task.Poc) isVul, _, name := executePoc(task.Req, task.Poc)
if isVul { if isVul {
result := fmt.Sprintf("[+] PocScan:%s %s %s", task.Req.URL, task.Poc.Name, name) result := fmt.Sprintf("[+] PocScan: %s %s %s", task.Req.URL, task.Poc.Name, name)
common.LogSuccess(result) common.LogSuccess(result)
} }
wg.Done() wg.Done()