new: new wifi.deauth.open boolean parameter to optionally skip open networks while deauthing en masse

This commit is contained in:
evilsocket 2019-02-06 07:53:39 +01:00
commit 1d55083f75
No known key found for this signature in database
GPG key ID: 1564D7F30393A456
3 changed files with 28 additions and 5 deletions

View file

@ -55,3 +55,7 @@ func (s *Station) Channel() int {
func (s *Station) HasWPS() bool {
return len(s.WPS) > 0
}
func (s *Station) IsOpen() bool {
return s.Encryption == ""
}