Skip to main content
Version: 2.1.1-preview

CIS.M365.5.1.4.6 - Ensure users are restricted from recovering BitLocker keys

Overview​

5.1.4.6 (L2) Ensure users are restricted from recovering BitLocker keys

This setting determines if users can self-service recover their BitLocker key(s). Restricting non-admin users from being able to see the BitLocker key(s) for their owned devices is the recommended state.

Rationale​

Restricting user access to the self-service BitLocker recovery key portal helps mitigate the risk of recovery key exposure in the event of a compromised user account. If an attacker gains access to both the user's credentials and the physical device, they could potentially retrieve the recovery key and decrypt sensitive data. The recovery key itself is also considered sensitive information.

Impact​

Users will no longer be able to retrieve their own BitLocker recovery key(s) from the My Account portal or the Microsoft Entra admin center. They'll need to contact a Cloud Device Administrator, Helpdesk Administrator, Intune Administrator, Security Administrator, or Security Reader to recover the key, which increases the support burden during device recovery scenarios.

Remediation action:​

  1. Navigate to Microsoft 365 Entra admin center.
  2. Click to expand Entra ID and select Devices > Device settings.
  3. Set Restrict non-admin users from recovering the BitLocker key(s) for their owned devices to Yes.
  4. Click the Save option at the top of the window.

Alternatively, use Microsoft Graph PowerShell:

Connect-MgGraph -Scopes Policy.ReadWrite.Authorization
$params = @{
defaultUserRolePermissions = @{
allowedToReadBitlockerKeysForOwnedDevice = $false
}
}
Invoke-MgGraphRequest -Method PATCH -Uri "https://graph.microsoft.com/v1.0/policies/authorizationPolicy" -Body $params

Test Metadata​

FieldValue
Test IDCIS.M365.5.1.4.6
SeverityUnknown
SuiteCIS
CategoryCIS E3 Level 2
PowerShell testTest-MtCisEnsureBitLockerKeyRecoveryRestricted
TagsCIS, CIS E3, CIS E3 Level 2, CIS E5, CIS E5 Level 2, CIS M365 v6.0.1, CIS.M365.5.1.4.6, L2, Security

Source​

  • Pester test: tests/cis/Test-MtCisEnsureBitLockerKeyRecoveryRestricted.Tests.ps1
  • PowerShell source: powershell/public/cis/Test-MtCisEnsureBitLockerKeyRecoveryRestricted.ps1