Skip to content

Commit

Permalink
up 2023-12-03
Browse files Browse the repository at this point in the history
  • Loading branch information
hktalent committed Dec 3, 2023
1 parent bafa225 commit f52014c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion runner/result.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ func (r *runner) handleResult() {
var m1 = map[string]interface{}{"ip": result.Answers, "subdomain": result.Subdomain, "tags": "subdomain"}
//KvCc.KvCc.Put(result.Subdomain, []byte("1"))

go util.PushLog(&m1)
func(m09 *map[string]interface{}) {
util.WaitFunc4Wg(util.Wg, func() {
util.PushLog(&m09)
})
}(&m1)
for _, out := range r.options.Writer {
_ = out.WriteDomainResult(result)
}
Expand Down

0 comments on commit f52014c

Please sign in to comment.