mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
12 lines
444 B
Plaintext
12 lines
444 B
Plaintext
table_name("sip_config")
|
|
description("Apple's System Integrity Protection (rootless) status")
|
|
schema([
|
|
Column("config_flag", TEXT, "The System Integrity Protection config flag"),
|
|
Column("enabled", INTEGER, "1 if this configuration is enabled, otherwise 0"),
|
|
Column("enabled_nvram", INTEGER, "1 if this configuration is enabled, otherwise 0"),
|
|
])
|
|
implementation("sip_config@genSIPConfig")
|
|
examples([
|
|
"select * from sip_config",
|
|
])
|