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
sip_config
macOS System Integrity Protection (SIP) protects the Mac by preventing the execution of unauthorized code. The sip_config osquery table collects the current SIP status of a Mac.
| Column | Type | Description |
|---|---|---|
| config_flag | text | The System Integrity Protection config flag |
| enabled | integer | 1 if this configuration is enabled, otherwise 0 |
| enabled_nvram | integer | 1 if this configuration is enabled, otherwise 0 |
Basic query:
SELECT * FROM sip_config;This query displays the current SIP status (SIP is enabled if the value=1):
SELECT enabled FROM sip_config WHERE config_flag='sip';SIP:
Organizations that develop software for Apple operating systems on the Mac may allow users to disable SIP. Because SIP is a basic and critical macOS security protection it is important to monitor SIP status on Hosts.
Links: