Skip to content

Commit

Permalink
beautify output
Browse files Browse the repository at this point in the history
  • Loading branch information
akkuman committed Sep 24, 2021
1 parent f1b616d commit 8c38ad1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,12 @@ func main() {
panic(err)
}
}()
count := 0
for v := range evilResults {
fmt.Printf("%s (%d), Keys Found:True, Configuration Address: 0x%x\n", v.Name, v.Pid, v.Address)
fmt.Printf("%s\n", v.Extractor.GetConfigText())
count++
}
v2 := time.Now()
fmt.Printf("The program took %v to run\n", v2.Sub(v1))
fmt.Printf("The program took %v to find out %d processes\n", v2.Sub(v1), count)
}

0 comments on commit 8c38ad1

Please sign in to comment.