mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
02b52005e0
* Adding a table for currently connected WiFi information * make format * make format * make format * make format * reed changes * format
19 lines
893 B
Plaintext
19 lines
893 B
Plaintext
table_name("wifi_status")
|
|
description("OS X current WiFi status")
|
|
schema([
|
|
Column("interface", TEXT, "Name of the interface"),
|
|
Column("ssid", TEXT, "SSID octets of the network"),
|
|
Column("bssid", TEXT, "The current basic service set identifier"),
|
|
Column("network_name", TEXT, "Name of the network"),
|
|
Column("security_type", TEXT, "Type of security on this network"),
|
|
Column("rssi", INTEGER, "The current received signal strength indication (dbm)"),
|
|
Column("noise", INTEGER, "The current noise measurement (dBm)"),
|
|
Column("channel_width", INTEGER, "Channel width"),
|
|
Column("channel_band", INTEGER, "Channel band"),
|
|
Column("transmit_rate", TEXT, "The current transmit rate"),
|
|
Column("mode", TEXT, "The current operating mode for the Wi-Fi interface"),
|
|
])
|
|
attributes(cacheable=True)
|
|
implementation("networking/wifi_status@genWifiStatus")
|
|
fuzz_paths([])
|