1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
wtf/security/client.go
2018-04-05 21:16:55 -07:00

15 lines
258 B
Go

package security
import ()
func Fetch() map[string]string {
data := make(map[string]string)
data["Enabled"] = FirewallState()
data["Stealth"] = FirewallStealthState()
data["Encryption"] = WifiEncryption()
data["Network"] = WifiName()
return data
}