mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2024-12-11 16:44:35 +00:00
9 lines
148 B
SQL
9 lines
148 B
SQL
-- Retrieves the current disk encryption status for the target system.
|
|
--
|
|
-- tags: postmortem
|
|
-- platform: posix
|
|
SELECT
|
|
*
|
|
FROM
|
|
disk_encryption;
|