mirror of
https://github.com/bettercap/bettercap
synced 2025-08-14 10:46:57 -07:00
new: parsing RSSI ( ref #53 )
This commit is contained in:
parent
35c9740537
commit
0ad426024f
6 changed files with 98 additions and 30 deletions
|
@ -66,6 +66,11 @@ func Dot11ParseIDSSID(packet gopacket.Packet) (bool, string) {
|
|||
}
|
||||
}
|
||||
|
||||
func Dot11ParseEncryption(packet gopacket.Packet, dot11 *layers.Dot11) (bool, []string) {
|
||||
// TODO :(
|
||||
return false, nil
|
||||
}
|
||||
|
||||
func Dot11IsDataFor(dot11 *layers.Dot11, station net.HardwareAddr) bool {
|
||||
// only check data packets of connected stations
|
||||
if dot11.Type.MainType() != layers.Dot11TypeData {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue