Operator On The Wire
Join
← Back to Knowledge Base
BLUE TEAM / THREAT HUNT / WINDOWS / EXECUTION

BitLocker

This note documents detection patterns related to BitLocker Activity within Windows environments.


Direct Indicators

LogEvent IDMeaningForensic ValueNotes
BitLocker-API24577BitLocker enabledCriticalVolume encryption initiated
BitLocker-API24579BitLocker disabledCriticalDecryption or protection removal
BitLocker-API24635Protection suspendedCriticalOften precursor to tampering
BitLocker-API24620Recovery key usedCriticalHigh-value DFIR signal
BitLocker-API24588Volume unlockedHighAccess to encrypted data
BitLocker-API24587Key protector removedCriticalAccess control change
BitLocker-API24586Key protector addedCriticalPersistence / access method
Sysmon1Process creationCriticalDetect manage-bde / PowerShell usage
Security4688Process creationCriticalNative logging fallback
Sysmon13Registry setHighPolicy tampering

Indirect Indicators

IndicatorWhat To Look ForForensic ValueNotes
BitLocker suspended before action24635 before executionCriticalPre-attack prep
Recovery key usage24620 eventCriticalUnauthorized access
manage-bde executionCLI usageHighAdmin or attacker
PowerShell BitLocker commandsEnable/Disable/SuspendCriticalScripted activity
Registry FVE changesPolicy weakenedCriticalSecurity downgrade
Unlock after recovery retrievalAD / Entra correlationCriticalStrong compromise signal

Common Tools

ToolUsage
manage-bde.exeNative BitLocker control
PowerShellBitLocker cmdlets / encoded commands
cmd.exeExecution wrapper
bcdedit.exeBoot manipulation
reagentc.exeRecovery config
Enable-BitLocker -MountPoint "C:" -EncryptionMethod Aes256 -UsedSpaceOnly -Pin $secureStringPowershell commands

Relevant Artifacts

  • BitLocker Event Logs:
    • Microsoft-Windows-BitLocker-API/Management
    • Microsoft-Windows-BitLocker-Driver/Operational
  • Sysmon Event IDs 1, 13
  • Security Event ID 4688
  • Registry:
    • HKLM\SOFTWARE\Policies\Microsoft\FVE
  • Prefetch for:
    • manage-bde.exe
    • powershell.exe
  • PowerShell history
  • AD / Entra BitLocker recovery logs

MITRE ATT&CK References

  • T1070 Indicator Removal on Host
  • T1070.006 Timestomp
  • T1562 Impair Defenses

Decision Tree

  1. What happened?

    • Enabled
    • Disabled
    • Suspended
    • Recovery used
  2. Which process triggered it?

    • manage-bde
    • PowerShell
    • Unknown
  3. Who performed it?

    • Admin
    • SYSTEM
    • Suspicious user
  4. Timing suspicious?

    • Before execution
    • Before log clear
    • After compromise
  5. Correlate:

    • Process lineage
    • Registry changes
    • Recovery access
  6. Scope:

    • Single machine
    • Multiple systems
    • Domain-wide

Example Detection Templates

KQL

SecurityEvent
| where EventID == 4688
| where Process has "manage-bde"
| project TimeGenerated, Computer, Account, Process
Sysmon
| where EventID == 1
| where CommandLine has_any ("manage-bde","Enable-BitLocker","Disable-BitLocker","Suspend-BitLocker")
| project TimeGenerated, Computer, User, CommandLine

EQL

process where process.name == "manage-bde.exe"
sequence by host.name with maxspan=5m
  [ process where process.name in ("powershell.exe","cmd.exe") ]
  [ process where process.command_line like "*BitLocker*" ]

Sigma

title: BitLocker Activity Detection
id: 7c9f2d1e-bitlocker-activity
status: experimental
description: Detects BitLocker administrative activity
author: Vergil
date: 2026-04-05
logsource:
  product: windows
  category: process_creation
detection:
  selection:
    CommandLine|contains:
      - 'manage-bde'
      - 'Enable-BitLocker'
      - 'Disable-BitLocker'
      - 'Suspend-BitLocker'
  condition: selection
fields:
  - CommandLine
falsepositives:
  - Legitimate admin usage
level: high
tags:
  - attack.defense_evasion

Snort

alert tcp any any -> any 389 (msg:"BitLocker Recovery Key LDAP Access"; content:"msFVE-RecoveryInformation"; nocase; sid:900100; rev:1;)

Mitigation & Hardening

Control AreaMitigationEffectivenessNotes
Audit logsEnable BitLocker loggingCriticalVisibility
SysmonTrack process executionCriticalAttribution
Registry monitoringWatch FVE keysHighPolicy tampering
Key access controlRestrict recovery keysCriticalPrevent abuse
SIEM correlationDetect chained behaviorCriticalReal detection