mirror of
https://github.com/bettercap/bettercap
synced 2025-08-14 02:36:57 -07:00
misc: wifi.deauth has been optimized by sorting frames to send by channel in order to minimize the amount of channel hops
This commit is contained in:
parent
148122e8fa
commit
49beed239f
4 changed files with 39 additions and 14 deletions
|
@ -78,7 +78,7 @@ func (w *WiFiModule) getRow(station *network.Station) ([]string, bool) {
|
|||
fmt.Sprintf("%d dBm", station.RSSI),
|
||||
bssid,
|
||||
/* station.Vendor, */
|
||||
strconv.Itoa(network.Dot11Freq2Chan(station.Frequency)),
|
||||
strconv.Itoa(station.Channel()),
|
||||
sent,
|
||||
recvd,
|
||||
seen,
|
||||
|
@ -100,7 +100,7 @@ func (w *WiFiModule) getRow(station *network.Station) ([]string, bool) {
|
|||
ssid,
|
||||
/* station.Vendor, */
|
||||
encryption,
|
||||
strconv.Itoa(network.Dot11Freq2Chan(station.Frequency)),
|
||||
strconv.Itoa(station.Channel()),
|
||||
clients,
|
||||
sent,
|
||||
recvd,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue