mirror of
https://github.com/bettercap/bettercap
synced 2025-08-14 02:36:57 -07:00
new: implemented channel hopping for wifi.recon module ( ref #53 )
This commit is contained in:
parent
e1e2e33f57
commit
a66f5fabbb
4 changed files with 87 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
|||
package network
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"net"
|
||||
"regexp"
|
||||
"strings"
|
||||
|
@ -57,3 +58,7 @@ func getInterfaceName(iface net.Interface) string {
|
|||
|
||||
return iface.Name
|
||||
}
|
||||
|
||||
func SetInterfaceChannel(iface string, channel int) error {
|
||||
return fmt.Errorf("Windows does not support WiFi channel hopping.")
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue