osquery-defense-kit/incident_response/wireless_networks_macos.sql

13 lines
245 B
MySQL
Raw Normal View History

2022-10-13 13:11:17 +00:00
-- Retrieves all the remembered wireless network that the target machine has connected to.
SELECT
2022-10-17 23:06:17 +00:00
ssid,
network_name,
security_type,
last_connected,
captive_portal,
possibly_hidden,
roaming,
roaming_profile
FROM
2022-10-17 23:06:17 +00:00
wifi_networks;