mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
15 lines
812 B
Plaintext
15 lines
812 B
Plaintext
table_name("disk_encryption")
|
|
description("Disk encryption status and information.")
|
|
schema([
|
|
Column("name", TEXT, "Disk name"),
|
|
Column("uuid", TEXT, "Disk Universally Unique Identifier"),
|
|
Column("encrypted", INTEGER, "1 If encrypted: true (disk is encrypted), else 0"),
|
|
Column("type", TEXT, "Description of cipher type and mode if available"),
|
|
Column("uid", TEXT, "Currently authenticated user if available (Apple)"),
|
|
Column("user_uuid", TEXT, "UUID of authenticated user if available (Apple)"),
|
|
Column("encryption_status", TEXT, "Disk encryption status with one of following values: encrypted | not encrypted | undefined"),
|
|
ForeignKey(column="name", table="block_devices"),
|
|
ForeignKey(column="uuid", table="block_devices"),
|
|
])
|
|
implementation("disk_encryption@genFDEStatus")
|