mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
12 lines
530 B
Plaintext
12 lines
530 B
Plaintext
table_name("sandboxes")
|
|
description("OS X application sandboxes container details.")
|
|
schema([
|
|
Column("label", TEXT, "UTI-format bundle or label ID"),
|
|
Column("user", TEXT, "Sandbox owner"),
|
|
Column("enabled", INTEGER, "Application sandboxings enabled on container"),
|
|
Column("build_id", TEXT, "Sandbox-specific identifier"),
|
|
Column("bundle_path", TEXT, "Application bundle used by the sandbox"),
|
|
Column("path", TEXT, "Path to sandbox container directory"),
|
|
])
|
|
implementation("sandboxes@genSandboxContainers")
|