39 min read

BitUnlocker: When Microsoft's Recovery Environment Becomes the Master Key

In July 2025, Microsoft's internal red team chained four CVEs in WinRE to bypass TPM-only BitLocker in under five minutes -- and the structural lesson is older than Windows 11.

Permalink

1. Hold Shift, click Restart, lose your disk

Hold Shift. Click Restart. Plug in a USB stick carrying a pre-patch boot manager [1] [2]. Under five minutes later, on any device whose Secure Boot trust set still includes the 2011 root, the encrypted drive that protected your laptop is mounted in plaintext. No PIN ever entered. The TPM none the wiser. The researchers who showed how to do this work at Microsoft.

This is not a hypothetical. The proof of concept is on GitHub [2]. The end-to-end attack takes less than five minutes against a fully patched Windows 11 device that has not yet deployed the Secure Boot revocation infrastructure -- which is to say, most of them.

The attack is called BitUnlocker. It is a four-CVE chain disclosed and patched by Microsoft on July 8, 2025 in cumulative update KB5062553 [3], then presented to the public a month later at Black Hat USA 2025 and DEF CON 33 with a Microsoft Security Blog write-up published August 13 to 14, 2025 [4]. The four vulnerabilities are CVE-2025-48804 (System Deployment Image parsing) [5], CVE-2025-48800 (tttracer.exe offline scanning) [6], CVE-2025-48003 (SetupPlatform.exe and a Shift+F10 hotkey) [7], and CVE-2025-48818 (Boot Configuration Data target-OS impersonation) [8].

The researchers are Netanel Ben Simon and Alon Leviev of STORM, Microsoft's internal red team [9]. Leviev is the same researcher who disclosed Windows Downdate at Black Hat USA 2024 [10], so the line of work has provenance: a Microsoft engineer who understands the Windows update pipeline well enough to undo it, now turned on the recovery pipeline that runs when the update pipeline fails.

A five-minute physical bypass against BitLocker is not a research curiosity in 2026. ShrinkLocker, the BitLocker-as-ransomware-payload family disclosed by Kaspersky in May 2024, was used to extort organisations in Mexico, Indonesia, and Jordan [11]. APT41 paired ProxyLogon access with BitLocker as the workstation-encryption layer of a 2021 ransomware operation [12]. Romania's national water authority lost about 1,000 systems to a BitLocker-based ransomware incident over a December 2025 weekend [13]. BitLocker's installed base is where the defensive stakes live. BitUnlocker is what the offensive stakes look like.

STORM stands for Security Testing and Offensive Research at Microsoft [9]. It is the internal red team that publishes coordinated disclosures against Microsoft's own products.
TPM-only protector

The default BitLocker configuration on Windows 11 consumer and most enterprise installs. The Trusted Platform Module releases the Volume Master Key automatically at boot when the Platform Configuration Registers match an expected profile, with no human interaction. There is no pre-boot PIN, no startup key, no challenge -- the only authentication is the boot chain's measurement.

The pre-boot PIN configuration -- TPM+PIN, in Microsoft's terminology -- defeats every attack in this article, including BitUnlocker. Microsoft has been recommending TPM+PIN in some form since BitLocker shipped with Windows Vista on its January 30, 2007 consumer general-availability date [14] [15]. Eighteen years later, that recommendation has not changed.

What has changed is the consequence of ignoring it.

TPM-only BitLocker assumes the boot chain is trustworthy. The boot chain has been the dominant BitLocker attack surface for three years and counting. The Windows Recovery Environment is part of the boot chain.

To understand why a four-CVE chain inside the recovery environment is enough to mount the entire encrypted volume in plaintext, we have to go back to a design decision Microsoft made in 2006. That decision is still shipping in every copy of Windows.

2. Why the recovery environment has the keys

BitLocker shipped with Windows Vista on its consumer general-availability date, January 30, 2007 [14] [15]. Niels Ferguson's August 2006 cipher specification described the cryptographic core -- AES in CBC mode plus a custom diffuser called Elephant, designed to resist exactly the kind of disk-sector chosen-plaintext games that an attacker with full-disk read/write access could otherwise play [18] [19]. Four protector modes shipped with Vista: TPM-only, TPM+PIN, TPM plus a USB startup key, and TPM plus startup key plus PIN [14]. Each successive mode added a pre-boot human-presence check that the TPM-only default deliberately omitted.

The cipher specification is the public part of the design. The part that mattered for the rest of the story is the part that is barely documented at all: how recovery works.

Volume Master Key (VMK)

The key-encrypting key that wraps the Full Volume Encryption Key. When a user changes their password or recovery configuration, only the VMK wrapping changes -- the entire volume does not need re-encryption. The TPM seals the VMK to a profile of boot-time measurements.

Full Volume Encryption Key (FVEK)

The symmetric key that encrypts each sector of the BitLocker-protected volume. The FVEK is never directly handled by the user; it sits behind the VMK and is rewrapped only during operations like algorithm change or full re-encryption.

Windows Recovery Environment (WinRE)

A small bootable image, based on Windows PE, that the boot manager hands off to when normal Windows fails. WinRE provides Push Button Reset, Startup Repair, System Image Recovery, Reset This PC, and the offline scanning tools that the rest of this article will treat as a trust boundary [1].

The recovery problem Microsoft was solving in 2006 was unromantic but unavoidable. If full-disk encryption is to be default-on for an operating system that ships on a billion devices, the recovery environment has to read the OS volume during a repair pass without re-prompting the user for a recovery key every time a Windows update hiccups. The 24x7 help desk for a Fortune 500 cannot dispatch a forty-eight-character recovery key to every user whose system needs Startup Repair. So the Windows boot manager passes the unlock state along to WinRE, which inherits the ability to mount the encrypted volume during legitimate recovery operations [1].

The behavior is documented in every WinRE technical reference Microsoft has shipped since Vista. The rationale -- the original engineering memo about why auto-unlock is the right answer, given the help-desk requirement -- is not public. That gap matters because the rationale is the load-bearing wall of the threat model. The choice is consistent with every Microsoft document about WinRE; the engineering decision itself is folk knowledge.

Windows 8 removed the Elephant diffuser but kept AES-CBC alone. XTS-AES did not become BitLocker's default for new fixed drives until Windows 10 v1511 in November 2015 [20]. The two-key VMK/FVEK hierarchy survived every cipher transition. So did WinRE's auto-unlock behavior.

Twenty months after Vista shipped, a Princeton research group would discover that "powered off" did not actually mean "key gone." The published attack literature against BitLocker was about to begin.

3. Eighteen years, six generations, one recommendation

The first attack specifically demonstrated against BitLocker as the named target appeared in 2008, the year after Vista's general availability -- though earlier generic memory primitives like FireWire DMA (Ruxcon 2006) became applicable to BitLocker as soon as Vista shipped. The most recent pre-2022 BitLocker bypass appeared in February 2024, when a four-dollar microcontroller pulled the keys off a Lenovo ThinkPad in 43 seconds [21]. Between those two endpoints sit six attack generations. Each one moved one layer up the trust stack. Each one was answered by Microsoft with the same operational recommendation.

Ctrl + scroll to zoom
Eighteen years of published BitLocker bypass generations

The structural reading of that timeline matters more than any individual entry, so here is the layer-by-layer walk:

Generation 1 -- Cold boot (2008). J. Alex Halderman and collaborators at Princeton and the EFF showed that DRAM retains its contents for seconds to minutes after power loss, longer if chilled with canned air. The AES key schedule has enough redundancy to be reconstructed from a partial dump, which means a powered-off BitLocker laptop with a still-warm DIMM is not actually at rest [22] [23]. Microsoft's structural answer was the Memory Overwrite Request (MOR) bit [14] and the eventual move to DDR generations that lose state faster. The user-facing answer was a pre-boot PIN [14].

Generation 2 -- FireWire and PCI DMA (2006 onward). Adam Boileau demonstrated at Ruxcon 2006 -- in a talk titled Hit By A Bus: Physical Access Attacks With Firewire -- that any host with an active FireWire port would let an unauthenticated peripheral read or write physical memory without involving the CPU [24]. Carsten Maartmann-Moe productionised the primitive as Inception, extending it to Thunderbolt, ExpressCard, and any other PCI-bus port that did not gate DMA behind the IOMMU [25]. Microsoft's structural answer accumulated in stages: DMA-related Group Policy controls during the Windows 8.1 era, then a named Kernel DMA Protection feature shipped with Windows 10 1803 -- with the explicit exclusion that 1394 FireWire is not covered by KDP, so the legacy bus has to be disabled in firmware [26]. The user-facing answer was a pre-boot PIN.

Generation 3 -- Classical bootkits (2009). Peter Kleissner's Stoned and the Kumar brothers' Vbootkit 2, both presented at Black Hat USA 2009, showed that a Master Boot Record bootkit could load above the BitLocker pre-boot environment, hook the key-release path, and never trip the TPM's Platform Configuration Registers because nothing had measured the MBR yet [27]. Microsoft's structural answer was UEFI Secure Boot plus Measured Boot's PCR 7, which moved the trust anchor from the MBR into the firmware. The user-facing answer was a pre-boot PIN.

Threat-model rename -- Evil Maid (2009). Joanna Rutkowska and Alex Tereshkin published a one-minute USB-stick infector against TrueCrypt that established a threat-model name rather than a primitive [28]. Rutkowska's earlier January 2009 post had already named BitLocker as the disk encryption she missed after moving to macOS [29]; her October 2009 follow-up named the category of attacks that everybody now calls Evil Maid. The Microsoft Countermeasures page now uses the same threat-model tier she articulated.

Generation 4 -- Self-Encrypting Deception (2018-2019). Carlo Meijer and Bernard van Gastel showed at IEEE S&P 2019 that BitLocker had been silently delegating cryptography to the SSD firmware on self-encrypting drives -- and that the firmware was broken across several major vendor families, with Samsung 840/850 EVO and Samsung T3/T5 among the affected lines [30] [31]. Microsoft's structural answer (KB4516071) was to stop delegating. This is the rare frontier Microsoft closed rather than mitigated incrementally: software encryption became the default again, and the "trust the drive" path was retired.

Generation 5 -- TPM bus sniffing (2019-2024). On a discrete TPM, the LPC or SPI bus between the CPU and the TPM chip carries the unsealed VMK in cleartext for a few microseconds. Hector Martin (marcan) first demonstrated extraction in January 2019 [32]; Denis Andzakovic published the first written technical account later in 2019 [33] [34] [27]. StackSmashing's February 2024 Raspberry Pi Pico kit reproduced the same primitive against a Lenovo ThinkPad X1 Carbon for under ten dollars of hardware in 43 seconds of wall clock [21] [35]. Microsoft's structural answer was firmware TPM (AMD fTPM, Intel PTT) on modern CPUs and Pluton on Pluton-equipped chipsets [36]. The user-facing answer was a pre-boot PIN.

The Pi Pico reproduction reduced the hardware cost by an order of magnitude from Andzakovic's 2019 FPGA setup [33] [21]. Same primitive; different price point.

Generation 5.5 -- TPM+PIN hardware bypass (2024). SCRT in Switzerland and Compass Security independently published that even with TPM+PIN configured, the Intermediate Key released after PIN validation still traverses the bus in clear on discrete-TPM hardware [37] [38]. The structural defeat is Pluton, where the bus does not exist on-die [36]. The user-facing answer for everyone else stayed: a pre-boot PIN, plus discrete-TPM replacement or BIOS-level TPM bus protection.

"By default, Microsoft BitLocker protected OS drives can be accessed by sniffing the LPC bus, retrieving the volume master key when it's returned by the TPM, and using the retrieved VMK to decrypt the protected drive." -- Denis Andzakovic, Pulse Security, 2019 [33]

Six generations. One recommendation. Pre-boot PIN. Microsoft has shipped real structural mitigations -- MOR, IOMMU, Secure Boot, Measured Boot, fTPM, Pluton, dbx revocation -- but the user-facing recommendation has not changed for eighteen years.

All six generations attack the layer below the boot manager. The boot manager itself, signed by Microsoft, has been treated as the trust anchor. In 2022, the first attack to make the boot manager itself the surface arrived. Its name was Bitpixie, and it is BitUnlocker's immediate ancestor.

4. The boot manager itself becomes the surface (2022-2025)

In August 2022, an independent researcher posting under the handle Rairii discovered that the Microsoft-signed Windows boot manager itself had a logic flaw: under a specific PXE soft-reboot sequence, the BitLocker Volume Master Key remained in physical memory and was never zeroed when control transferred [39] [40]. The bug was assigned CVE-2023-21563. The patch shipped in the January 10, 2023 Patch Tuesday cumulative [41] [42]; Rairii made the discovery public on Mastodon the following month [39]. The old signed binary remained chain-loadable. It still is.

Thomas Lambertz of Neodyme published the canonical technical write-up of "Bitpixie" in late 2024, then presented the work at 38C3 in December 2024 [43] [44]. His follow-up post asked an uncomfortable question -- why no fix? -- and answered it: the patch closed the code path, but the pre-patch boot manager was signed under Microsoft's Windows Production CA 2011, and that certificate was still in the Secure Boot allow-list (db) on most fielded Windows devices [16]. A physically present attacker could supply an old, signed, vulnerable copy of bootmgfw.efi and the firmware would still load it.

REVISE / dbx

This article uses "REVISE" as a convenience handle for Microsoft's verbosely-named "Windows Boot Manager revocations for Secure Boot changes associated with CVE-2023-24932" rollout. Microsoft does not market the work under the REVISE name -- the technical content here is what matters. The UEFI db is the allow-list of trusted signing certificates and signed binary hashes; the dbx is the corresponding deny-list. KB5025885's current (April 2024+) approach is certificate-based: it adds the Windows Production PCA 2011 signing certificate to dbx, which untrusts every boot manager signed by it, and ships a new UEFI CA 2023 certificate to replace the 2011 root. (The original May 2023 mitigations used a hash-by-hash strategy against specific boot manager binaries that was superseded for being too narrow.) The rollout is opt-in across multiple phases (currently five) because pushing a dbx change at scale can brick devices [17].

PCA 2011

Microsoft Windows Production CA 2011. The intermediate certificate that signs the Windows boot manager and every other Microsoft-trusted EFI binary loaded under Secure Boot. The 2011 root is set to expire in waves starting June 2026, which is the structural reason REVISE / UEFI CA 2023 must complete before then [3].

The REVISE rollout under KB5025885 ships across opt-in phases (currently five: Initial Deployment, Second Deployment, Evaluation, Deployment, Enforcement), each gated by a registry-bitmask AvailableUpdates opt-in. Within the currently-active Evaluation and Deployment phases, the mitigations roll out in three actions: (1) install the new UEFI CA 2023 cert into db and trust-roll to the 2023-signed boot manager; (2) push the Windows Production PCA 2011 signing certificate into dbx -- the moment that "patched" becomes "revoked" on that device; (3) write a Secure Version Number into the firmware so the boot manager can self-revoke older copies of itself [17]. The named Phase 1 (Initial Deployment, May 9, 2023) used a now-superseded hash-by-hash revocation approach against specific boot manager binaries. Each phase is an irreversible state change once Secure Boot stays on, which is why Microsoft has gated the schedule on operator readiness rather than calendar pressure.

Compass Security's May 2025 follow-up reproduced the Bitpixie exploit in a WinPE-based variant signed entirely by Microsoft components -- replacing the third-party Linux shim that secured-core PCs disable by default -- end-to-end in roughly five minutes via PXE [45]. Five minutes is a useful benchmark because BitUnlocker's USB-deliverable PoC clocks at the same number against the same chain-load downgrade primitive, with a different post-exploitation strategy and a different delivery vector.

Two other 2022-2024 bootkits frame the era. ESET disclosed BlackLotus in March 2023, the first in-the-wild UEFI bootkit observed bypassing Secure Boot on a fully patched Windows 11 by abusing CVE-2022-21894 "Baton Drop" [46] [47]. ESET's November 2024 Bootkitty disclosure brought the first publicly analysed UEFI bootkit aimed at Linux, although ESET's follow-up note clarified the artefact was a Korean Best of Best student project rather than in-the-wild malware [48]. Both used the same observation that underwrites Bitpixie and BitUnlocker: a Microsoft-signed binary with a logic flaw stays trusted until Microsoft adds it to dbx, which is a multi-year programme.

Ctrl + scroll to zoom
The 2022-2025 boot-chain attack era. Three parallel paths share one structural pattern.
Same researcher, two pipelines: Leviev disclosed Windows Downdate at Black Hat USA 2024 and co-disclosed BitUnlocker at Black Hat USA 2025 [10]. Update pipeline one year, recovery pipeline the next.

Bitpixie scavenges the VMK from RAM after a buggy soft reboot. BlackLotus drops a UEFI bootkit. Both depend on the same observation: a Microsoft-signed binary with a logic flaw stays trusted until Microsoft revokes it. In July 2025, four Microsoft engineers asked a sharper question. What if you do not have to find a logic flaw at all? What if the recovery environment is given the keys legitimately, and all you have to do is be the recovery environment?

5. Four parsers, one trust boundary

WinRE already has the keys. That is the design.

STORM's insight was not to attack the seal. It was to observe that every parser inside WinRE sits inside the BitLocker auto-unlock trust boundary, and to ask which of those parsers is buggy. Once you reframe the problem from "find a way to make the TPM release the key" to "the recovery environment is given the key by design, so make me the recovery environment," the question stops being cryptographic and becomes a code-audit question. STORM found four answers. There are almost certainly more.

The four CVEs map to four parsers. The first is the entry vector; the next two are escalations inside the boundary; the fourth is the unconditional decryption finisher that turns the chain from a privileged shell into a permanently disabled BitLocker volume. Each subsection below follows the same template: what gets parsed, where the integrity check goes wrong, what falls out of the parser, why that primitive ends the chain.

Ctrl + scroll to zoom
The BitUnlocker entry chain: from USB boot to malicious WinRE with inherited auto-unlock

5.1 CVE-2025-48804 -- SDI parsing as the entry vector

WinRE boots from a System Deployment Image (Boot.sdi) bundled with a Windows Imaging file (.wim). The boot manager hashes the SDI for integrity before transferring control. STORM noticed that the integrity check covered the on-disk original bytes of the SDI, but the runtime that consumed the image followed an internal offset pointer that the attacker could shift to point at appended bytes after the hashed region [5] [9]. Append a malicious WIM at the tail of a legitimate SDI, manipulate the offset, and the hash still passes -- but execution targets your bytes.

The garatc proof of concept assembles this into a USB-bootable payload that downgrades to a pre-patch bootmgfw.efi signed under PCA 2011 (still trusted on most fielded devices), then parses an SDI of its own construction. Total prerequisites listed in the PoC README: physical access, TPM-only protector, PCR 7 plus PCR 11 trusted, and Microsoft Windows PCA 2011 in the Secure Boot db [2]. The wall clock for end-to-end exploitation: under five minutes.

JavaScript SDI parsing offset confusion (pseudocode)
// Schematic of the CVE-2025-48804 integrity-vs-execution split.
// The hash covers the on-disk SDI bytes; execution follows an
// offset pointer that the attacker can move past the hashed region.

const sdi = readFromDisk("Boot.sdi");
const hash = sha256(sdi);              // integrity check sees ORIGINAL bytes
if (hash !== expectedHash) throw "abort";

const offset = readOffsetFromHeader(sdi); // attacker-controlled in malicious SDI
const wim = sdi.slice(offset);            // points PAST the hashed region
executeWim(wim);                          // runs appended malicious WIM

// Lesson: the hashed range and the executed range are not the same range.
// The fix in KB5062553 binds them so that execution can only target
// bytes that the integrity hash actually covered.

Press Run to execute.

Once the malicious WinRE is running, it inherits the BitLocker auto-unlock state from the boot context. The encrypted volume is now mountable. The remaining three CVEs are about what an attacker can do from within WinRE that the original threat model did not expect WinRE to enable.

5.2 CVE-2025-48800 -- tttracer.exe as a proxy executor

WinRE's Offline Scanning operation invokes antivirus tooling from within the recovery environment. The set of trusted binaries WinRE will execute during scan is enumerated in ReAgent.xml -- WinRE's app-registry equivalent -- and includes Microsoft-signed diagnostic utilities. Among them is tttracer.exe, Microsoft's Time Travel Tracing debugger, included because it is occasionally invoked during diagnostics [6].

tttracer.exe is a proxy executor: by design, it launches an arbitrary process under tracing instrumentation. The LOLBAS project documents the exact invocation as tttracer.exe {PATH_ABSOLUTE:.exe}, mapped to MITRE ATT&CK technique T1127, with the launched process running as a child of tttracer.exe [49]. Inside the WinRE auto-unlock boundary, with the live OS volume mounted, "arbitrary process" is the same primitive as "shell on the cleartext volume." Combine an attacker-controlled ReAgent.xml with tttracer.exe's proxy-execution semantics and Offline Scanning becomes Offline Pwning.

Time Travel Tracing is a Microsoft debugger most readers will not have seen named. It records process execution as a deterministic replayable trace and is a standard tool inside Microsoft's reliability engineering. Being on the WinRE trusted-app registry is a reasonable choice when the threat model is "diagnose a broken boot," not "an attacker is in the recovery environment."

5.3 CVE-2025-48003 -- SetupPlatform.exe and Shift+F10

SetupPlatform.exe, the Windows Setup host, remains on the WinRE trusted-app registry after upgrades and registers a Shift+F10 hotkey that opens cmd.exe. The Shift+F10 chord has been a long-standing Windows Setup feature for OEM imaging and unattended diagnostics, where it is harmless because there is no encrypted volume mounted yet [7] [50].

Inside WinRE, after auto-unlock has happened, Shift+F10 opens cmd.exe on the cleartext OS volume. STORM observed that manipulating the WinRE Apps Scheduled Operation entries in ReAgent.xml creates an unbounded trigger window -- the hotkey stays armed long enough for an attacker to use it. The shell that opens has the privileges of SetupPlatform under WinRE, with the OS volume mounted underneath it.

5.4 CVE-2025-48818 -- BCD target-OS impersonation

The first three CVEs assume the attacker has gotten WinRE to boot. The fourth one closes the loop and turns the access from a privileged shell on the volume into an unconditional, persistent decryption -- without any further interaction.

WinRE enumerates disk volumes in a specific order when deciding which Boot Configuration Data (BCD) store to consume as the description of the "operating system to recover." STORM placed an attacker-controlled BCD store on the recovery partition that gets enumerated before the legitimate one [8] [50]. WinRE treats the attacker volume as the trusted OS to recover, then invokes Push Button Reset with the DecryptVolume directive -- a legitimate sub-operation of PBR that disables BitLocker entirely. After Push Button Reset completes, BitLocker is not bypassed; it is off.

Push Button Reset / DecryptVolume directive

A legitimate WinRE sub-operation invoked during recovery when the target volume must be fully decrypted before being re-imaged or returned to a clean state. The directive removes the BitLocker protectors and rewrites every sector of the volume in plaintext. When invoked by a legitimately-recovered OS, this is correct behavior. When invoked by an impersonated target-OS BCD entry, it is a permanent encryption removal.

5.5 The structural pattern

Ctrl + scroll to zoom
The WinRE auto-unlock trust boundary and the four parsers that each cross it

Four parsers; one boundary. The structural pattern reads:

Every CVE attacks a different parser. Every parser sits inside the same auto-unlock trust boundary. Patching individual parsers does not close the boundary; it shrinks it. The boundary is the bug class.

Microsoft shipped patches for all four CVEs in KB5062553 on July 8, 2025 [3]. The patches fixed the four code paths. They did not change the trust boundary. They did not, by themselves, even revoke the pre-patch boot manager that the chain depends on. To see what the July patches actually changed, and what they did not, we have to look at REVISE.

6. What KB5062553 changed, and what REVISE will

On the same Patch Tuesday that fixed BitUnlocker, Microsoft also reminded administrators that the Secure Boot certificate underwriting the entire Windows boot chain begins to expire in June 2026 [3]. The two facts are not independent.

KB5062553 closed the four BitUnlocker code paths inside the Windows 11 24H2 build 26100.4652 cumulative. The SDI parser was bound so that the integrity hash and the execution range now agree. The trusted-app registry semantics for tttracer.exe and SetupPlatform.exe were tightened so neither acts as a proxy executor inside WinRE. The BCD enumeration order was reworked so the recovery partition cannot present a target-OS impersonator before the legitimate one. Those are real fixes for real bugs.

What KB5062553 did not change is the trust set. The pre-July-2025 bootmgfw.efi is still signed under PCA 2011, and PCA 2011 is still in the Secure Boot db on most fielded Windows devices. A physically present attacker can supply that old, signed, vulnerable boot manager from a USB stick. The firmware will load it. The four code paths are fixed in the new boot manager, but the old boot manager is still on the trust list. This is the same downgrade pattern that keeps Bitpixie exploitable [16].

The structural defence is REVISE, shipped under KB5025885 and the CVE-2023-24932 advisory [17]. REVISE adds the Windows Production PCA 2011 signing certificate to the Secure Boot dbx, which untrusts every boot manager signed by it, and ships a new UEFI CA 2023 certificate to replace the 2011 root. After REVISE deploys, the firmware refuses to load the pre-patch boot manager. The rollout is opt-in across multiple phases (currently five) because a dbx update at fleet scale carries real brick risk: any device that ends up trying to boot a binary whose signing certificate has just been moved to the deny-list will not boot. KB5025885 explicitly warns that once the mitigation is enabled on a device, it cannot be reverted while Secure Boot remains on.

Ctrl + scroll to zoom
What KB5062553 changed and what REVISE will change

Patches close code paths. REVISE closes trust. Neither closes the WinRE auto-unlock surface itself. That is a different question, and the comparison Microsoft never likes to make is what other desktop operating systems chose to do about it.

7. How other platforms make the same trade-off

Windows is the only major desktop operating system that ships an auto-unlocking recovery environment on a TPM-sealed key. The other three -- macOS, ChromeOS, and Linux with LUKS -- make different choices at the same trade-off point. Looking at those choices shows what is actually possible.

PlatformRecovery primitiveKey availability during recoveryAuto-unlock from physical-presence pathFailure mode if compromised
Windows + BitLocker + WinREPush Button Reset, Startup Repair, Reset This PCVMK released by TPM, inherited by WinREYes -- Shift+Restart -> recovery menuBitUnlocker class: parser bugs leak the cleartext volume to attacker code running inside WinRE
macOS + FileVault + macOS RecoverymacOS Recovery (boot to recovery partition)Data Volume NOT mounted; user password or recovery key requiredNoRecovery cannot read user data without authentication
ChromeOS + Verified Boot + PowerwashRecovery USB / chrome://recoveryNone -- recovery wipes user dataNoRecovery destroys the protected data set
Linux + LUKS / dm-cryptinitramfs / rescue shellNone -- every boot prompts for passphraseNoRecovery cannot proceed without passphrase

Windows + BitLocker + WinRE is the only row in that table where the recovery environment can read user data without re-prompting the user. BitUnlocker is what the trade-off looks like once that property gets weaponised.

macOS chose a different recovery model. FileVault encrypts the Data Volume; the signed System Volume Snapshot does not. macOS Recovery boots into the signed system volume and presents a Disk Utility view of the Data Volume that requires a user password or recovery key to mount. The recovery environment is not given the keys. A macOS-side analogue of CVE-2025-48804 would still need to coerce Recovery into surfacing authentication UI -- the recovery primitive does not run with the user volume already mounted.

ChromeOS chose the most aggressive recovery model. Verified Boot enforces signature chains all the way to the kernel; recovery from a corrupted state means powerwash, which wipes the user partition. There is no equivalent of WinRE that needs to read the encrypted volume. The trade-off is enforced by sacrificing the data, which is acceptable because user data on ChromeOS is mostly remote.

LUKS / dm-crypt is the simplest model. Every boot, including recovery, prompts for the passphrase. There is no auto-unlock state to inherit. The trade-off is help-desk burden: a forgotten passphrase is a wiped drive. This is the model that the Microsoft Countermeasures page implicitly recommends for the "skilled attacker with lengthy physical access" threat tier when it suggests TPM+PIN [14].

Recovery-key escrow to Microsoft Entra ID, Active Directory, or a local user account is a separate confidentiality boundary from the BitUnlocker surface. Forbes reported in January 2026 on a Guam FBI warrant served to Microsoft for BitLocker recovery keys, illustrating the legal-process pathway [51]. Different threat surface; same product.

The trade-off Microsoft made in 2006 was the right one for a fleet that needs help-desk recoverability and the wrong one for a threat model with physical access. Eighteen years and seven attack generations later, the trade-off has not been revisited. The next section asks whether it can be.

8. Why patching cannot close the surface

In complexity theory, an impossibility result tells you what cannot be done no matter how hard you try. BitUnlocker is not that kind of result. It is the next thing over: a structural consequence of the threat model that no quantity of parser patches can close.

State the recovery-versus-confidentiality dilemma carefully. As long as a system auto-unlocks an encrypted volume for repair purposes without user-presence verification at the moment of recovery, the recovery environment's trust boundary equals the encryption's trust boundary. This is not a theorem in the published literature. It is the structural reading of the Microsoft Countermeasures threat-model tiers [14], and it follows almost mechanically from how the WinRE auto-unlock state is inherited.

The dilemma admits exactly two engineering exits. The first is to deprecate WinRE auto-unlock and require a recovery key for every WinRE entry. Microsoft has not done this and will not do this, because the help-desk recoverability story collapses without it -- fleet administrators rely on WinRE entry being silent for routine repair. The second is to make TPM+PIN the default for non-Entra-enrolled devices, which forces a pre-boot human-presence check that WinRE structurally cannot satisfy. Microsoft has not done this either, presumably because of the help-desk cost of forgotten PINs at consumer scale.

Until one of those two changes, the next BitUnlocker is a question of when, not whether. The four CVEs are an existence proof for the bug class "Microsoft-signed binary on the WinRE trusted-app registry whose parsing of unsigned configuration data can be coerced." The cardinality of that bug class is not four. STORM found four. There are more.

As long as a system auto-unlocks an encrypted volume for repair purposes without user-presence verification at the moment of recovery, the recovery environment's trust boundary equals the encryption's trust boundary. The bug class is not the parsers. The bug class is the boundary that contains them.

Microsoft is not unaware of this. Quick Machine Recovery -- the cloud-orchestrated recovery primitive that reached general availability in 2025 -- extends the WinRE-equivalent surface rather than retracting it [52]. The trade-off pricing is ongoing. So is the audit.

The next section is the question that follows from the boundary framing: what else is inside the boundary that STORM did not get to?

9. What STORM did not audit

STORM published four CVEs. The Windows Recovery Environment contains more than four parsers.

Four open questions follow directly from the boundary framing:

The remaining WinRE trusted-app surface. STORM exploited tttracer.exe and SetupPlatform.exe. The WinRE Apps Scheduled Operation in ReAgent.xml registers other Microsoft-signed binaries. None of those binaries was written under the assumption that an attacker would be the one calling them with the OS volume mounted. How many similar inheritances remain unaudited is unknown, and the population is the unstated denominator of every subsequent BitUnlocker-class CVE.

PCA 2011 trust on most fielded devices. Until REVISE deploys at fleet scale, the pre-July-2025 bootmgfw.efi remains chain-loadable on any device that still trusts PCA 2011. The June 2026 PCA 2011 expiration is the structural milestone [3]. Between mid-2025 and mid-2026, the BitUnlocker entry vector is a deployment question, not a code question.

Quick Machine Recovery extending the WinRE-equivalent surface. Cloud-orchestrated recovery on encrypted volumes occupies the same trust boundary as WinRE -- by design, since the point of QMR is to do silent fleet repair on devices that cannot reach a desk [52]. No published security audit comparable to STORM's BitUnlocker work has appeared for QMR. The next BitUnlocker-shaped CVE may live there.

Pluton hardware bypass. No published practical hardware attack on Pluton exists in the open literature as of mid-2026. The SCRT/Compass-class TPM+PIN bypasses are limited to discrete-TPM hardware where the bus between CPU and TPM is exposed [37] [38] [36]. Whether Pluton admits decapping, laser-fault-injection, or microarchitectural side-channel attacks is an open question that nobody outside Microsoft and a handful of three-letter agencies has the budget to answer at scale.

Quick Machine Recovery's 2025 general availability puts it inside the BitUnlocker disclosure timeline [52]. Microsoft is expanding the WinRE-equivalent attack surface in the same calendar year that STORM is publishing the four CVEs.

And one orthogonal question that every BitLocker survey is asked: who has the recovery key? A serious defender has to think about the recovery-key escrow surface too -- see below.

The open-problems list above is what is unaudited as of mid-2026. The actionable question -- what do I, as an administrator, do tomorrow? -- is the subject of the next section.

10. Six things defenders should do this week

If you administer a Windows fleet, six concrete actions change the threat model. They are listed here in priority order, not severity order. The first one is the structural mitigation; the others are patch hygiene around it.

1. Enable TPM+PIN. The PowerShell-equivalent invocation is manage-bde -protectors -add C: -tpmandpin [53]. This is the only mitigation that changes the threat model independently of patch state -- it forces a pre-boot human-presence check that WinRE structurally cannot satisfy. The honest trade-off: users forget PINs and help-desk burden goes up. The honest counterpoint: the recommendation has been in the Microsoft Countermeasures page in some form since Vista, and BitUnlocker is what eighteen years of ignoring it has produced [14].

2. Apply KB5062553 or any later cumulative. The July 8, 2025 cumulative closes the four BitUnlocker code paths [3]. By the time you read this, several later cumulatives have shipped; deploy the latest. This addresses the post-entry portion of the chain but not the entry vector.

3. Deploy REVISE / migrate Secure Boot to UEFI CA 2023. This is the dbx-side defence that revokes the pre-patch bootmgfw.efi [17]. Until REVISE has run on a device, "patched" is not "revoked." The deployment is opt-in across multiple phases (currently five) because a bad dbx push at scale bricks devices; the June 2026 PCA 2011 expiration is the hard deadline.

4. Restrict WinRE access where the threat model permits. On kiosks, lab machines, lights-out servers, and other devices where there is no fleet-recovery requirement, reagentc /disable closes the WinRE entry surface entirely. This costs you Push Button Reset and Startup Repair on those devices, which is acceptable for devices that are re-imaged centrally [50].

5. Harden the firmware delivery surface. Enable Secure Boot, set a firmware password, disable USB and PXE boot in firmware on devices that are not expected to be re-imaged in the field [50]. This closes the delivery vector independently of the WinRE patch state. It does nothing against an attacker who can boot from internal disk, which is why this is one of six items rather than the first one.

6. Surface BitLocker protection state in management telemetry. Intune, Microsoft Defender for Endpoint, and Entra ID can all report on whether a device has a TPM-only or TPM+PIN protector and whether the CVE-2023-24932 dbx revocation has applied (the per-device Secure Boot dbx update status field surfaced in Intune / Defender for Endpoint). Make those fields first-class in your fleet dashboards. PIN-on / PIN-off and dbx-revoked / not-revoked should both be visible at the fleet level, not buried inside a per-device drill-down.

JavaScript Verify BitLocker protector configuration (logic of manage-bde)
// Logical equivalent of: manage-bde -protectors -get C:
// Run this against the parsed output to confirm the
// device is using TPM+PIN rather than TPM-only.

function classifyProtectors(protectorTypes) {
const hasPIN = protectorTypes.includes('TpmPin') ||
               protectorTypes.includes('TpmPinStartupKey');
const hasTPM = protectorTypes.some((t) => t.startsWith('Tpm'));
if (!hasTPM) return 'NoTPM -- not in scope of BitUnlocker';
if (hasPIN)  return 'TPM+PIN -- defeats BitUnlocker entry vector';
return 'TPM-only -- vulnerable to BitUnlocker entry vector';
}

// Example: the default Windows 11 consumer configuration
console.log(classifyProtectors(['Tpm', 'RecoveryPassword']));
// -> "TPM-only -- vulnerable to BitUnlocker entry vector"

Press Run to execute.

What if my workforce will not accept a pre-boot PIN?

If you genuinely cannot deploy TPM+PIN (kiosks running unattended, OT workloads, accessibility-driven exemptions), the partial mitigation stack is REVISE's dbx-revocation phase + firmware password + USB/PXE disabled in firmware + Kernel DMA Protection. Together these close the BitUnlocker entry vector on the patched code paths and the downgrade path and the firmware delivery channel. None of them changes the WinRE auto-unlock boundary -- only TPM+PIN does that -- so the next BitUnlocker-class CVE may still be exploitable on these devices until the corresponding patch ships. Treat this stack as a temporary mitigation, not a permanent answer.

None of these are new recommendations. The pre-boot PIN line in particular has been in the Microsoft Countermeasures page in some form since Vista [14]. What has changed is the operational consequence of not following it. BitUnlocker is what the consequence looks like today.

11. Frequently asked questions

BitUnlocker has produced a predictable list of misconceptions. Each question below names a common misconception about BitUnlocker and gives the correct framing -- because the wrong answers are where threat models get built quietly.

Frequently asked questions

Does BitUnlocker work against fTPM and Pluton?

Yes against both -- the attack is upstream of the TPM seal, so the bus-elimination property of fTPM and Pluton does not help here. See §5.5 for the full mechanism and the contrast with TPM bus sniffing, which does fail against fTPM and Pluton because there is no exposed bus to sniff.

Was BitUnlocker disclosed on July 8, 2025?

No. BitUnlocker was patched on July 8, 2025 in KB5062553 [3]. It was disclosed at Black Hat USA 2025 and DEF CON 33 in early August 2025, with the Microsoft Security Blog write-up published August 13 to 14, 2025 [4]. Coordinated disclosure timelines mean the patch ships before the talk. Useful date to remember: KB5062553 = fix, August 2025 = public technical detail.

Is the July 2025 patch enough?

Only against an attacker who cannot chain-load the pre-July-2025 bootmgfw.efi. Until REVISE / KB5025885 is deployed on a given device, the old signed boot manager remains trusted [17] and the BitUnlocker entry vector remains usable from a USB stick. The patch closes the code paths in the new boot manager; the dbx update closes the old one's trust. They are different operations on different schedules.

Is TPM+PIN safe against this?

Yes against the BitUnlocker CVE class. A pre-boot PIN forces a human-presence check that WinRE structurally cannot satisfy from a boot-time recovery context. The Compass Security and SCRT TPM+PIN bypasses [38] [37] are a separate, hardware-physical class that targets the bus between CPU and discrete TPM; they do not apply to fTPM or Pluton. For a TPM+PIN on Pluton or fTPM, none of the published attacks in this article succeed.

Did BitUnlocker use an unsigned bootloader?

No. The chain uses Microsoft-signed binaries throughout. The pre-patch bootmgfw.efi is Microsoft-signed under PCA 2011. tttracer.exe, SetupPlatform.exe, and the WinRE binaries inside the trust boundary are all Microsoft-signed. The bug class is logic flaws in the parsing of unsigned data (Boot.sdi, ReAgent.xml, BCD) by signed binaries. Secure Boot is doing exactly what it is designed to do; the boundary it enforces is not the boundary BitUnlocker crosses.

Is BitUnlocker the same as Bitpixie?

No. Bitpixie scavenges the VMK from RAM via a soft-reboot bug in the pre-patch bootmgfw.efi (CVE-2023-21563, discovered August 2022 by Rairii, disclosed February 2023) [43]. BitUnlocker boots a malicious WinRE that inherits auto-unlock on the live volume. The shared structural pattern is that both are upstream of the TPM seal, both are defeated by TPM+PIN, and both work against fTPM and Pluton. The mechanism is different; the lesson is identical.

What is STORM, and how is it related to Windows Downdate?

STORM is the Security Testing and Offensive Research at Microsoft team -- Microsoft's internal red team. Alon Leviev, one of the BitUnlocker co-authors, also disclosed Windows Downdate at Black Hat USA 2024 [10]. The Downdate research showed that the Windows update pipeline could be coerced into installing older, vulnerable code paths. BitUnlocker is a different mechanism by the same researcher, one year later, on the recovery pipeline rather than the update pipeline.

The Shift+Restart chord ships in every copy of Windows. The recommendation that defeats it -- enable a pre-boot PIN -- has been on the Microsoft Countermeasures page since Vista. STORM's contribution is not that they found four bugs. It is that they made what happens when the recommendation is ignored impossible to look away from. The next move is the reader's.

"To defend against malicious reset attacks, BitLocker uses the TCG Reset Attack Mitigation, also known as MOR bit." -- Microsoft Learn, BitLocker Countermeasures [14]

Study guide

Key terms

TPM-only protector
Default BitLocker mode that releases the VMK on boot-chain measurement match alone, with no pre-boot human presence check.
Volume Master Key (VMK)
Key-encrypting key that wraps the FVEK; sealed by the TPM to a PCR profile.
Windows Recovery Environment (WinRE)
Bootable image based on Windows PE that inherits BitLocker auto-unlock during legitimate recovery.
PCA 2011
Microsoft Windows Production CA 2011; signs pre-July-2025 boot managers and is still trusted on most fielded devices until REVISE migrates them to UEFI CA 2023.
REVISE / dbx
Secure Boot revocation infrastructure shipped under KB5025885 / CVE-2023-24932; the current Evaluation Phase adds the Windows Production PCA 2011 signing certificate to the dbx deny-list, which untrusts every boot manager signed by that certificate.
Push Button Reset / DecryptVolume directive
Legitimate WinRE sub-operation invoked by CVE-2025-48818 that disables BitLocker entirely after target-OS impersonation.

References

  1. Windows Recovery Environment (Windows RE) -- technical reference. Microsoft Learn. https://learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/windows-recovery-environment--windows-re--technical-reference
  2. (2025). garatc/BitUnlocker (proof of concept). https://github.com/garatc/BitUnlocker
  3. (2025). July 8, 2025 -- KB5062553 (OS Build 26100.4652). Microsoft Support. https://support.microsoft.com/en-us/topic/july-8-2025-kb5062553-os-build-26100-4652-523e69cb-051b-43c6-8376-6a76d6caeefd
  4. Netanel Ben Simon & Alon Leviev (2025). BitUnlocker: Leveraging Windows Recovery to Extract BitLocker Secrets. https://techcommunity.microsoft.com/blog/microsoft-security-blog/bitunlocker-leveraging-windows-recovery-to-extract-bitlocker-secrets/4442806
  5. (2025). CVE-2025-48804. https://nvd.nist.gov/vuln/detail/CVE-2025-48804
  6. (2025). CVE-2025-48800. https://nvd.nist.gov/vuln/detail/CVE-2025-48800
  7. (2025). CVE-2025-48003. https://nvd.nist.gov/vuln/detail/CVE-2025-48003
  8. (2025). CVE-2025-48818. https://nvd.nist.gov/vuln/detail/CVE-2025-48818
  9. (2025). BitUnlocker: full-volume encryption bypass found by Microsoft researchers. https://www.itnews.com.au/news/bitunlocker-full-volume-encryption-bypass-found-by-microsoft-researchers-619577
  10. Alon Leviev (2024). Downgrade attacks using Windows updates. https://www.safebreach.com/blog/downgrade-attacks-using-windows-updates/
  11. (2024). ShrinkLocker: turning BitLocker into ransomware. Kaspersky Securelist. https://securelist.com/ransomware-abuses-bitlocker/112643/
  12. (2021). APT41 Activity and the Tale of a Failed Ransom Attempt. Cymulate. https://cymulate.com/threats/apt41-activity-and-the-tale-of-a-failed-ransom-attempt/
  13. (2025). Romania national water agency ransomware attack. The Record. https://therecord.media/romania-national-water-agency-ransomware-attack
  14. BitLocker Countermeasures. Microsoft Learn. https://learn.microsoft.com/en-us/windows/security/operating-system-security/data-protection/bitlocker/countermeasures
  15. (2007). Microsoft Launches Windows Vista and Microsoft Office 2007 to Consumers Worldwide. Microsoft News. https://news.microsoft.com/source/2007/01/29/microsoft-launches-windows-vista-and-microsoft-office-2007-to-consumers-worldwide/
  16. Thomas Lambertz (2024). BitLocker: Why is there no fix yet?. https://neodyme.io/en/blog/bitlocker_why_no_fix/
  17. (2023). KB5025885: How to manage the Windows Boot Manager revocations for Secure Boot changes associated with CVE-2023-24932. Microsoft Support. https://support.microsoft.com/en-us/topic/how-to-manage-the-windows-boot-manager-revocations-for-secure-boot-changes-associated-with-cve-2023-24932-41a975df-beb2-40c1-99a3-b3ff139f832d
  18. Niels Ferguson (2006). AES-CBC + Elephant Diffuser: A Disk Encryption Algorithm for Windows Vista. https://www.microsoft.com/en-us/download/details.aspx?id=13866
  19. Niels Ferguson (2006). BitLocker Drive Encryption Cipher (archive mirror). https://archive.org/details/bit-locker-cipher-200608
  20. Configure BitLocker (XTS-AES default, EncryptionMethodByDriveType). Microsoft Learn. https://learn.microsoft.com/en-us/windows/security/operating-system-security/data-protection/bitlocker/configure
  21. (2024). Beating BitLocker In 43 Seconds. https://hackaday.com/2024/02/06/beating-bitlocker-in-43-seconds/
  22. J. Alex Halderman, Seth D. Schoen, Nadia Heninger, William Clarkson, William Paul, Joseph A. Calandrino, Ariel J. Feldman, Jacob Appelbaum, & Edward W. Felten (2008). Lest We Remember: Cold Boot Attacks on Encryption Keys. https://www.usenix.org/legacy/events/sec08/tech/halderman.html
  23. J. Alex Halderman & et al. (2008). Lest We Remember: Cold Boot Attacks on Encryption Keys (PDF). https://www.usenix.org/legacy/event/sec08/tech/full_papers/halderman/halderman.pdf
  24. Adam Boileau (2006). Hit By A Bus: Physical Access Attacks With Firewire (Ruxcon 2006 release notes via Wayback). https://web.archive.org/web/2009/http://storm.net.nz/projects/16
  25. Carsten Maartmann-Moe carmaa/inception (DMA attack tool). https://github.com/carmaa/inception
  26. Kernel DMA Protection. Microsoft Learn. https://learn.microsoft.com/en-us/windows/security/hardware-security/kernel-dma-protection-for-thunderbolt
  27. Wack0/bitlocker-attacks (community taxonomy). https://github.com/Wack0/bitlocker-attacks
  28. Joanna Rutkowska (2009). Evil Maid goes after TrueCrypt!. https://theinvisiblethings.blogspot.com/2009/10/evil-maid-goes-after-truecrypt.html
  29. Joanna Rutkowska (2009). Why do I miss Microsoft BitLocker?. https://theinvisiblethings.blogspot.com/2009/01/why-do-i-miss-microsoft-bitlocker.html
  30. Carlo Meijer & Bernard van Gastel (2019). Self-Encrypting Deception: Weaknesses in the Encryption of Solid State Drives. https://www.ieee-security.org/TC/SP2019/papers/310.pdf
  31. (2019). Self-Encrypting Deception (researchr listing, IEEE S&P 2019). https://researchr.org/publication/MeijerG19
  32. SySS-Research/icestick-lpc-tpm-sniffer (anchors January 2019 marcan disclosure). https://github.com/SySS-Research/icestick-lpc-tpm-sniffer
  33. Denis Andzakovic (2019). Extracting BitLocker keys from a TPM. https://pulsesecurity.co.nz/articles/TPM-sniffing
  34. (2019). New BitLocker attack puts laptops storing sensitive data at risk. https://www.zdnet.com/article/new-bitlocker-attack-puts-laptops-storing-sensitive-data-at-risk/
  35. stacksmashing/pico-tpmsniffer. https://github.com/stacksmashing/pico-tpmsniffer
  36. Microsoft Pluton security processor. Microsoft Learn. https://learn.microsoft.com/en-us/windows/security/hardware-security/pluton/microsoft-pluton-security-processor
  37. (2024). Privilege escalation through TPM sniffing when BitLocker PIN is enabled. https://blog.scrt.ch/2024/10/28/privilege-escalation-through-tpm-sniffing-when-bitlocker-pin-is-enabled/
  38. (2024). Microsoft BitLocker bypasses are practical. https://blog.compass-security.com/2024/02/microsoft-bitlocker-bypasses-are-practical/
  39. Rairii (2023). Bitpixie discovery (Mastodon post via Wayback). https://web.archive.org/web/20230501000759/https://haqueers.com/@Rairii/109817927668949732
  40. martanne/bitpixie (PoC reproduction). https://github.com/martanne/bitpixie
  41. (2023). CVE-2023-21563 -- BitLocker Security Feature Bypass. https://nvd.nist.gov/vuln/detail/CVE-2023-21563
  42. (2023). MSRC: CVE-2023-21563. https://msrc.microsoft.com/update-guide/vulnerability/CVE-2023-21563
  43. Thomas Lambertz (2024). BitLocker: Screwed Without a Screwdriver. https://neodyme.io/en/blog/bitlocker_screwed_without_a_screwdriver/
  44. Thomas Lambertz (2024). Windows BitLocker: Screwed Without a Screwdriver (38C3). https://events.ccc.de/congress/2024/hub/en/event/windows-bitlocker-screwed-without-a-screwdriver/
  45. (2025). Bypassing BitLocker Encryption: Bitpixie PoC and WinPE edition. https://blog.compass-security.com/2025/05/bypassing-bitlocker-encryption-bitpixie-poc-and-winpe-edition/
  46. Martin Smolar (2023). BlackLotus UEFI bootkit: Myth confirmed. https://www.welivesecurity.com/2023/03/01/blacklotus-uefi-bootkit-myth-confirmed/
  47. (2022). MSRC: CVE-2022-21894 (Baton Drop). https://msrc.microsoft.com/update-guide/vulnerability/CVE-2022-21894
  48. (2024). Bootkitty: Analyzing the first UEFI bootkit for Linux. https://www.welivesecurity.com/en/eset-research/bootkitty-analyzing-first-uefi-bootkit-linux/
  49. Tttracer.exe (LOLBAS entry). https://lolbas-project.github.io/lolbas/Binaries/Tttracer/
  50. (2025). Microsoft Researchers Detail BitLocker Bypass Chain in WinRE; Patches Shipped in July. https://www.thehackacademy.com/news/microsoft-researchers-detail-bitlocker-bypass-chain-in-winre-patches-shipped-in-july/
  51. Thomas Brewster (2026). Microsoft Gave FBI BitLocker Encryption Keys, Exposing Privacy Flaw. Forbes. https://www.forbes.com/sites/thomasbrewster/2026/01/22/microsoft-gave-fbi-keys-to-unlock-bitlocker-encrypted-data/
  52. Quick machine recovery. Microsoft Learn. https://learn.microsoft.com/en-us/windows/configuration/quick-machine-recovery/
  53. manage-bde: protectors (command-line reference, documents -tpmandpin). Microsoft Learn. https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/manage-bde-protectors