1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
wtf/security/client.go
2018-04-09 10:19:12 -07:00

16 lines
286 B
Go

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