mirror of
https://github.com/bettercap/bettercap
synced 2025-07-08 05:51:37 -07:00
28 lines
445 B
Go
28 lines
445 B
Go
package wifi
|
|
|
|
import (
|
|
"net"
|
|
|
|
"github.com/bettercap/bettercap/network"
|
|
)
|
|
|
|
type WiFiClientEvent struct {
|
|
AP *network.AccessPoint
|
|
Client *network.Station
|
|
}
|
|
|
|
type WiFiProbeEvent struct {
|
|
FromAddr net.HardwareAddr
|
|
FromVendor string
|
|
FromAlias string
|
|
SSID string
|
|
RSSI int8
|
|
}
|
|
|
|
type WiFiHandshakeEvent struct {
|
|
File string
|
|
NewPackets int
|
|
AP net.HardwareAddr
|
|
Station net.HardwareAddr
|
|
PMKID []byte
|
|
}
|