mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2024-12-12 17:14:37 +00:00
13 lines
245 B
SQL
13 lines
245 B
SQL
-- Retrieves all the remembered wireless network that the target machine has connected to.
|
|
SELECT
|
|
ssid,
|
|
network_name,
|
|
security_type,
|
|
last_connected,
|
|
captive_portal,
|
|
possibly_hidden,
|
|
roaming,
|
|
roaming_profile
|
|
FROM
|
|
wifi_networks;
|