mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 00:45:19 +00:00
14 lines
583 B
YAML
14 lines
583 B
YAML
name: wifi_networks
|
|
description: Wi-Fi networks previously connected to by this Mac, or that are otherwise in this computer's known/remembered Wi-Fi networks list.
|
|
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';
|
|
|
|
```
|