You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lsblk is part of util-linux and provides much more convenient JSON output for parsing compared to cryptsetup status. It is also a much safer command and requires fewer privileges.
For example, here's a check for "does the / partition use full disk encryption?":
The other advantage of lsblk is that it allows sandboxing of the Kolide launcher to only allow access to "/" and disallow access to other sensitive mount points. Because it requires more permissions, cryptsetup fails in this kind of sandbox.
The text was updated successfully, but these errors were encountered:
lsblk
is part ofutil-linux
and provides much more convenient JSON output for parsing compared tocryptsetup status
. It is also a much safer command and requires fewer privileges.For example, here's a check for "does the / partition use full disk encryption?":
The other advantage of
lsblk
is that it allows sandboxing of the Kolidelauncher
to only allow access to "/" and disallow access to other sensitive mount points. Because it requires more permissions,cryptsetup
fails in this kind of sandbox.The text was updated successfully, but these errors were encountered: