mirror of
https://github.com/bettercap/bettercap
synced 2025-08-20 21:43:18 -07:00
new: implemented wifi.bruteforce for darwin (ref #1075)
This commit is contained in:
parent
b0d56e4f5e
commit
08da91ed5c
7 changed files with 382 additions and 7 deletions
10
modules/wifi/wifi_bruteforce_unsupported.go
Normal file
10
modules/wifi/wifi_bruteforce_unsupported.go
Normal file
|
@ -0,0 +1,10 @@
|
|||
//go:build windows || freebsd || netbsd || openbsd
|
||||
// +build windows freebsd netbsd openbsd
|
||||
|
||||
package wifi
|
||||
|
||||
import "errors"
|
||||
|
||||
func wifiBruteforce(_ *WiFiModule, _ bruteforceJob) (bool, error) {
|
||||
return false, errors.New("not supported on this OS")
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue