mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 18:08:53 +00:00
13 lines
503 B
Plaintext
13 lines
503 B
Plaintext
table_name("gatekeeper")
|
|
description("OS X Gatekeeper Details.")
|
|
schema([
|
|
Column("assessments_enabled", INTEGER, "1 If a Gatekeeper is enabled else 0"),
|
|
Column("dev_id_enabled", INTEGER, "1 If a Gatekeeper allows execution from identified developers else 0"),
|
|
Column("version", TEXT, "Version of Gatekeeper's gke.bundle"),
|
|
Column("opaque_version", TEXT, "Version of Gatekeeper's gkopaque.bundle"),
|
|
])
|
|
implementation("gatekeeper@genGateKeeper")
|
|
fuzz_paths([
|
|
"/var/db/SystemPolicy"
|
|
])
|