Skip to content

Commit

Permalink
Linux disk encryption :: Update standard-query-library.yml (#22498)
Browse files Browse the repository at this point in the history
Credit: @jbilling
  • Loading branch information
mikermcneil authored Oct 2, 2024
1 parent 467c5c4 commit 4de7eb9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -514,12 +514,12 @@ apiVersion: v1
kind: policy
spec:
name: Full disk encryption enabled (Linux)
query: SELECT 1 FROM disk_encryption WHERE encrypted=1 AND name LIKE '/dev/dm-1';
query: SELECT 1 FROM mounts m, disk_encryption d WHERE m.device_alias = d.name AND d.encrypted = 1 AND m.path = '/';
description: Checks if the root drive is encrypted. There are many ways to encrypt Linux systems. This is the default on distributions such as Ubuntu.
resolution: "Ensure the image deployed to your Linux workstation includes full disk encryption."
platform: linux
tags: compliance, hardening, built-in, critical
contributors: GuillaumeRoss
contributors: jbilling,GuillaumeRoss
---
apiVersion: v1
kind: policy
Expand Down

0 comments on commit 4de7eb9

Please sign in to comment.