mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
15 lines
258 B
Go
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
|
|
}
|