mirror of
https://github.com/bettercap/bettercap
synced 2025-07-16 10:03:39 -07:00
fix: supporting hidden networks
This commit is contained in:
parent
8720327743
commit
fc840f413f
2 changed files with 8 additions and 1 deletions
|
@ -133,6 +133,10 @@ func (w *WiFiRecon) getRow(station *network.Station) []string {
|
|||
}
|
||||
|
||||
ssid := station.ESSID()
|
||||
if ssid == "<hidden>" {
|
||||
ssid = core.Dim(ssid)
|
||||
}
|
||||
|
||||
encryption := station.Encryption
|
||||
if encryption == "OPEN" || encryption == "" {
|
||||
encryption = core.Green("OPEN")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue