fleet/schema/tables/wifi_networks.yml
Eric 02437a098e
Schema: change default block scalar used in schema override files (#19296)
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
2024-05-27 18:18:56 -05:00

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';
```