mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
13 lines
604 B
Plaintext
13 lines
604 B
Plaintext
|
|
table_name("bitlocker_info")
|
|
description("Retrieve bitlocker status of the machine.")
|
|
schema([
|
|
Column("device_id", TEXT, "ID of the encrypted drive."),
|
|
Column("drive_letter", TEXT, "Drive letter of the encrypted drive."),
|
|
Column("persistent_volume_id", TEXT, "Persistent ID of the drive."),
|
|
Column("conversion_status", INTEGER, "The bitlocker conversion status of the drive."),
|
|
Column("protection_status", INTEGER, "The bitlocker protection status of the drive."),
|
|
Column("encryption_method", TEXT, "The encryption type of the device."),
|
|
])
|
|
implementation("bitlocker_info@genBitlockerInfo")
|