From f51291512c1649d1cce308c418b9b4d883994d66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BD=B1=E8=88=9E=E8=80=85?= Date: Mon, 13 Nov 2023 11:57:13 +0800 Subject: [PATCH] Update check.go --- WebScan/lib/check.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WebScan/lib/check.go b/WebScan/lib/check.go index 572a202..d97dd06 100644 --- a/WebScan/lib/check.go +++ b/WebScan/lib/check.go @@ -33,7 +33,7 @@ func CheckMultiPoc(req *http.Request, pocs []*Poc, workers int) { for task := range tasks { isVul, _, name := executePoc(task.Req, task.Poc) 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) } wg.Done()