mirror of
https://github.com/bettercap/bettercap
synced 2025-07-15 01:23:42 -07:00
28 lines
433 B
Go
28 lines
433 B
Go
package wifi
|
|
|
|
import (
|
|
"net"
|
|
|
|
"github.com/bettercap/bettercap/network"
|
|
)
|
|
|
|
type ClientEvent struct {
|
|
AP *network.AccessPoint
|
|
Client *network.Station
|
|
}
|
|
|
|
type ProbeEvent struct {
|
|
FromAddr net.HardwareAddr
|
|
FromVendor string
|
|
FromAlias string
|
|
SSID string
|
|
RSSI int8
|
|
}
|
|
|
|
type HandshakeEvent struct {
|
|
File string
|
|
NewPackets int
|
|
AP net.HardwareAddr
|
|
Station net.HardwareAddr
|
|
PMKID []byte
|
|
}
|