mirror of
https://github.com/bettercap/bettercap
synced 2025-08-20 05:23:19 -07:00
new: reporting if wifi handshakes are full or half
This commit is contained in:
parent
9e9b984fec
commit
3d31bf3712
3 changed files with 8 additions and 0 deletions
|
@ -80,6 +80,10 @@ func (mod *EventsStream) viewWiFiHandshakeEvent(e session.Event) {
|
|||
|
||||
if hand.PMKID != nil {
|
||||
what = "RSN PMKID"
|
||||
} else if hand.Full {
|
||||
what += " (full)"
|
||||
} else if hand.Half {
|
||||
what += " (half)"
|
||||
}
|
||||
|
||||
fmt.Fprintf(mod.output, "[%s] [%s] captured %s -> %s %s to %s\n",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue