Solutions
Device management
Remotely manage, and protect laptops and mobile devices.
Orchestration
Automate tasks across devices, from app installs to scripts.
Software management
Inventory, patch, and manage installed software.
Infrastructure as code
See every change, undo any error, repeat every success.
Extend Fleet
Integrate your favorite tools with Fleet.
More
Device management
Remotely manage, and protect laptops and mobile devices.
Orchestration
Automate tasks across devices, from app installs to scripts.
Software management
Inventory, patch, and manage installed software.
Infrastructure as code
See every change, undo any error, repeat every success.
Extend Fleet
Integrate your favorite tools with Fleet.
Fleet uses osquery tables to query operating system, hardware, and software data. Each table provides specific data for analysis and filtering.
Apple
Linux
Windows
ChromeOS
secureboot
Secure Boot UEFI Settings.
| Column | Type | Description |
|---|---|---|
| description | text | (Apple Silicon) Human-readable description: 'Full Security', 'Reduced Security', or 'Permissive Security' Not returned in SELECT * FROM secureboot.Only available on macOS |
| kernel_extensions | integer | (Apple Silicon) Allow user management of kernel extensions from identified developers (1 if allowed) Not returned in SELECT * FROM secureboot.Only available on macOS |
| mdm_operations | integer | (Apple Silicon) Allow remote (MDM) management of kernel extensions and automatic software updates (1 if allowed) Not returned in SELECT * FROM secureboot.Only available on macOS |
| secure_boot | integer | Whether secure boot is enabled |
| secure_mode | integer | (Intel) Secure mode: 0 disabled, 1 full security, 2 medium security Not returned in SELECT * FROM secureboot.Only available on macOS |
| setup_mode | integer | Whether setup mode is enabled Only available on Linux and Windows |
See the secure boot status (enabled or not) of Windows and Linux systems. You could create a policy looking for it to be set to 1.
SELECT secure_boot FROM secureboot;