mirror of
https://github.com/bettercap/bettercap
synced 2025-08-14 10:46:57 -07:00
Wifi mod: extraction of Auth&Cipher from beacon
This commit is contained in:
parent
cf187520e8
commit
27e68aefc9
3 changed files with 184 additions and 8 deletions
|
@ -6,11 +6,13 @@ import (
|
|||
|
||||
type Station struct {
|
||||
*Endpoint
|
||||
Frequency int `json:"frequency"`
|
||||
RSSI int8 `json:"rssi"`
|
||||
Sent uint64 `json:"sent"`
|
||||
Received uint64 `json:"received"`
|
||||
Encryption string `json:"encryption"`
|
||||
Frequency int `json:"frequency"`
|
||||
RSSI int8 `json:"rssi"`
|
||||
Sent uint64 `json:"sent"`
|
||||
Received uint64 `json:"received"`
|
||||
Encryption string `json:"encryption"`
|
||||
Cipher string `json:"cipher"`
|
||||
Authentication string `json:"authentication"`
|
||||
}
|
||||
|
||||
func cleanESSID(essid string) string {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue