mirror of
https://github.com/bettercap/bettercap
synced 2025-08-20 21:43:18 -07:00
new: detection and parsing of deauthentication frames as wifi.deauthentication events
This commit is contained in:
parent
cea53b969e
commit
240c4c3219
4 changed files with 57 additions and 1 deletions
|
@ -9,6 +9,14 @@ type ClientEvent struct {
|
|||
Client *network.Station
|
||||
}
|
||||
|
||||
type DeauthEvent struct {
|
||||
RSSI int8 `json:"rssi"`
|
||||
Address1 string `json:"address1"`
|
||||
Address2 string `json:"address2"`
|
||||
Address3 string `json:"address3"`
|
||||
Reason string `json:"reason"`
|
||||
}
|
||||
|
||||
type ProbeEvent struct {
|
||||
FromAddr string `json:"mac"`
|
||||
FromVendor string `json:"vendor"`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue