Wifi mod: extraction of Auth&Cipher from beacon

This commit is contained in:
Gianluca 2018-02-26 00:11:46 +01:00
commit 27e68aefc9
3 changed files with 184 additions and 8 deletions

View file

@ -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 {