2022-10-18 19:13:42 +00:00
|
|
|
name: wifi_networks
|
2023-06-26 15:51:09 +00:00
|
|
|
description: Wi-Fi networks previously connected to by this Mac, or that are otherwise in this computer's known/remembered Wi-Fi networks list.
|
2022-10-18 19:13:42 +00:00
|
|
|
examples: >-
|
|
|
|
Find WiFi networks configured on Macs that are unencrypted and require a
|
|
|
|
captive portal. This can be useful to understand how much people use laptops
|
|
|
|
in hotels, airports and other environments, and is a good indicator that tools
|
|
|
|
such as DNS-over-HTTPS would improve privacy of connectivity.
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
SELECT network_name FROM wifi_networks WHERE security_type='Open' AND captive_portal='1';
|
|
|
|
|
|
|
|
```
|