mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
Closes: #19271 Closes: #19286 Changes: - Updated the example in the schema folder readme - Updated the block scalar used in Fleet's osquery override documentation (`>-` » `|-`) and removed extra newlines - Updated the block scalar used in URLs used to create new yaml override files - Regenerated osqeury_fleet_schema.json
11 lines
581 B
YAML
11 lines
581 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';
|
|
```
|