Skip to content

Commit

Permalink
fixed webscan 2023-10-11
Browse files Browse the repository at this point in the history
  • Loading branch information
hktalent committed Oct 11, 2023
1 parent 4321354 commit 2fce871
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions webScan/Functions/Final.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,7 @@ func final_ALLurl_ALLJson(urllist *[]string) {
for i := 0; i < size; i++ {
jobs_url <- (*urllist)[i]
}
for i := 0; i < size; i++ {
res := <-allresult
for res := range allresult {
for key, res_tmp := range res.res {
if res_tmp == true {
util.SendLog(res.url, "webScan", res.exp_name[key], "")
Expand Down

0 comments on commit 2fce871

Please sign in to comment.