Making Bitlocker policy stricter (#7253)
Adding a filter to check that this is happening on the C drive and not some random other drive.
This commit is contained in:
@@ -489,7 +489,7 @@ apiVersion: v1
|
||||
kind: policy
|
||||
spec:
|
||||
name: Full disk encryption enabled (Windows)
|
||||
query: SELECT 1 FROM bitlocker_info where protection_status = 1;
|
||||
query: SELECT 1 FROM bitlocker_info WHERE drive_letter='C:' AND protection_status=1;
|
||||
description: Checks to make sure that full disk encryption is enabled on Windows devices.
|
||||
resolution:
|
||||
"To get additional information, run the following osquery query on the failing device: SELECT * FROM bitlocker_info. In the
|
||||
|
||||
@@ -81,7 +81,8 @@ export const DEFAULT_POLICIES = [
|
||||
},
|
||||
{
|
||||
key: 7,
|
||||
query: "SELECT 1 FROM bitlocker_info WHERE protection_status = 1;",
|
||||
query:
|
||||
"SELECT 1 FROM bitlocker_info WHERE drive_letter='C:' AND protection_status=1;",
|
||||
name: "Full disk encryption enabled (Windows)",
|
||||
description:
|
||||
"Checks to make sure that full disk encryption is enabled on Windows devices.",
|
||||
|
||||
Reference in New Issue
Block a user