Difference between revisions of "BitLocker Disk Encryption"
Joachim Metz (Talk | contribs) (→External Links) |
Joachim Metz (Talk | contribs) (→Tools) |
||
(11 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
== BitLocker == | == BitLocker == | ||
− | + | BitLocker encrypts data with either 128-bit or 256-bit [[AES]] and optionally using a diffuser algorithm called Elephant. The key used to do the encryption, the Full Volume Encryption Key (FVEK) and/or TWEAK key, is stored in the BitLocker metadata on the protected volume. The FVEK and/or TWEAK keys are encrypted using another key, namely the Volume Master Key (VMK). Several copies of the VMK are also stored in the metadata. Each copy of the VMK is encrypted using another key, also know as key-protector key. Some of the key-protectors are: | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
* TPM (Trusted Platform Module) | * TPM (Trusted Platform Module) | ||
* Smart card | * Smart card | ||
Line 16: | Line 12: | ||
BitLocker has support for partial encrypted volumes. | BitLocker has support for partial encrypted volumes. | ||
− | == BitLocker To Go == | + | === BitLocker To Go === |
Volumes encrypted with BitLocker To Go will have a hybrid encrypted volume, meaning that part of the volume is unencrypted and contains applications to unlock the volume and the other part of the volume is encrypted. The "discovery drive" volume contains BitLocker To Go Reader to read from encrypted volumes on versions of Microsoft [[Windows]] without BitLocker support. | Volumes encrypted with BitLocker To Go will have a hybrid encrypted volume, meaning that part of the volume is unencrypted and contains applications to unlock the volume and the other part of the volume is encrypted. The "discovery drive" volume contains BitLocker To Go Reader to read from encrypted volumes on versions of Microsoft [[Windows]] without BitLocker support. | ||
+ | |||
+ | == How to detect == | ||
+ | Volumes encrypted with BitLocker will have a different signature than the standard [[NTFS]] header. | ||
+ | |||
+ | A BitLocker encrypted volume starts with the "-FVE-FS-" signature. | ||
+ | |||
+ | A hexdump of the start of the volume should look similar to: | ||
+ | <pre> | ||
+ | 00000000 eb 58 90 2d 46 56 45 2d 46 53 2d 00 02 08 00 00 |.X.-FVE-FS-.....| | ||
+ | 00000010 00 00 00 00 00 f8 00 00 3f 00 ff 00 00 00 00 00 |........?.......| | ||
+ | 00000020 00 00 00 00 e0 1f 00 00 00 00 00 00 00 00 00 00 |................| | ||
+ | 00000030 01 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| | ||
+ | 00000040 80 00 29 00 00 00 00 4e 4f 20 4e 41 4d 45 20 20 |..)....NO NAME | | ||
+ | 00000050 20 20 46 41 54 33 32 20 20 20 33 c9 8e d1 bc f4 | FAT32 3.....| | ||
+ | </pre> | ||
+ | |||
+ | These volumes can also be identified by a GUID: | ||
+ | * for BitLocker: 4967d63b-2e29-4ad8-8399-f6a339e3d00 | ||
+ | * for BitLocker ToGo: 4967d63b-2e29-4ad8-8399-f6a339e3d01 | ||
+ | |||
+ | Which in a hexdump of the start of the volume should look similar to: | ||
+ | <pre> | ||
+ | 000000a0 3b d6 67 49 29 2e d8 4a 83 99 f6 a3 39 e3 d0 01 |;.gI)..J....9...| | ||
+ | </pre> | ||
== manage-bde == | == manage-bde == | ||
Line 42: | Line 62: | ||
* [http://en.wikipedia.org/wiki/BitLocker_Drive_Encryption Wikipedia entry on BitLocker] | * [http://en.wikipedia.org/wiki/BitLocker_Drive_Encryption Wikipedia entry on BitLocker] | ||
− | * [http://www.nvlabs.in/ | + | * [http://www.nvlabs.in/nvbit_bitlocker_white_paper.pdf Accessing Bitlocker volumes from linux], by Nitin Kumar and Vipin Kumar, 2008 |
− | * | + | * [http://jessekornblum.com/publications/di09.html Implementing BitLocker for Forensic Analysis], ''Digital Investigation'', by Jesse D. Kornblum, 2009 |
− | * [https://googledrive.com/host/0B3fBvzttpiiSX2VCRk16TnpDd0U/BitLocker%20Drive%20Encryption%20(BDE)%20format.pdf BitLocker Drive Encryption (BDE) format specification], by the [[libbde | + | * [https://googledrive.com/host/0B3fBvzttpiiSX2VCRk16TnpDd0U/BitLocker%20Drive%20Encryption%20(BDE)%20format.pdf BitLocker Drive Encryption (BDE) format specification], by the [[libbde|libbde project]], March 2011 |
* [http://technet2.microsoft.com/WindowsVista/en/library/c61f2a12-8ae6-4957-b031-97b4d762cf311033.mspx?mfr=true Microsoft's Step by Step Guide] | * [http://technet2.microsoft.com/WindowsVista/en/library/c61f2a12-8ae6-4957-b031-97b4d762cf311033.mspx?mfr=true Microsoft's Step by Step Guide] | ||
* [http://technet.microsoft.com/en-us/windowsvista/aa906017.aspx Microsoft Technical Overview] | * [http://technet.microsoft.com/en-us/windowsvista/aa906017.aspx Microsoft Technical Overview] | ||
Line 55: | Line 75: | ||
== Tools == | == Tools == | ||
* [http://www.hsc.fr/ressources/outils/dislocker/ dislocker] | * [http://www.hsc.fr/ressources/outils/dislocker/ dislocker] | ||
+ | * [http://technet.microsoft.com/en-us/library/dd875513(v=ws.10).aspx Manage-bde.exe], by [[Microsoft]] | ||
* [[libbde]] | * [[libbde]] | ||
[[Category:Disk encryption]] | [[Category:Disk encryption]] | ||
[[Category:Windows]] | [[Category:Windows]] |
Revision as of 06:01, 1 April 2014
BitLocker Disk Encryption (BDE) is Full Volume Encryption solution by Microsoft first included with the Enterprise and Ultimate editions of Windows Vista. It is also present in Windows 7 along with a system for encrypting removable storage media devices, like USB, which is called BitLocker To Go. Unlike previous versions of BitLocker, BitLocker To Go allows the user to protect volumes with a password or smart card.
Contents
BitLocker
BitLocker encrypts data with either 128-bit or 256-bit AES and optionally using a diffuser algorithm called Elephant. The key used to do the encryption, the Full Volume Encryption Key (FVEK) and/or TWEAK key, is stored in the BitLocker metadata on the protected volume. The FVEK and/or TWEAK keys are encrypted using another key, namely the Volume Master Key (VMK). Several copies of the VMK are also stored in the metadata. Each copy of the VMK is encrypted using another key, also know as key-protector key. Some of the key-protectors are:
- TPM (Trusted Platform Module)
- Smart card
- recovery password
- start-up key
- clear key; this key-protector provides no protection
- user password
BitLocker has support for partial encrypted volumes.
BitLocker To Go
Volumes encrypted with BitLocker To Go will have a hybrid encrypted volume, meaning that part of the volume is unencrypted and contains applications to unlock the volume and the other part of the volume is encrypted. The "discovery drive" volume contains BitLocker To Go Reader to read from encrypted volumes on versions of Microsoft Windows without BitLocker support.
How to detect
Volumes encrypted with BitLocker will have a different signature than the standard NTFS header.
A BitLocker encrypted volume starts with the "-FVE-FS-" signature.
A hexdump of the start of the volume should look similar to:
00000000 eb 58 90 2d 46 56 45 2d 46 53 2d 00 02 08 00 00 |.X.-FVE-FS-.....| 00000010 00 00 00 00 00 f8 00 00 3f 00 ff 00 00 00 00 00 |........?.......| 00000020 00 00 00 00 e0 1f 00 00 00 00 00 00 00 00 00 00 |................| 00000030 01 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 00000040 80 00 29 00 00 00 00 4e 4f 20 4e 41 4d 45 20 20 |..)....NO NAME | 00000050 20 20 46 41 54 33 32 20 20 20 33 c9 8e d1 bc f4 | FAT32 3.....|
These volumes can also be identified by a GUID:
- for BitLocker: 4967d63b-2e29-4ad8-8399-f6a339e3d00
- for BitLocker ToGo: 4967d63b-2e29-4ad8-8399-f6a339e3d01
Which in a hexdump of the start of the volume should look similar to:
000000a0 3b d6 67 49 29 2e d8 4a 83 99 f6 a3 39 e3 d0 01 |;.gI)..J....9...|
manage-bde
To view the BitLocker Drive Encryption (BDE) status on a running Windows system:
manage-bde.exe -status
To obtain the recovery password for volume C:
manage-bde.exe -protectors -get C: -Type recoverypassword
Or just obtain the all “protectors” for volume C:
manage-bde.exe -protectors -get C:
See Also
External Links
- Wikipedia entry on BitLocker
- Accessing Bitlocker volumes from linux, by Nitin Kumar and Vipin Kumar, 2008
- Implementing BitLocker for Forensic Analysis, Digital Investigation, by Jesse D. Kornblum, 2009
- BitLocker Drive Encryption (BDE) format specification, by the libbde project, March 2011
- Microsoft's Step by Step Guide
- Microsoft Technical Overview
- An Introduction to Security in Windows 7
- Microsoft FAQ
- Microsoft Description of the Encryption Algorithm
- Cold Boot Attacks, Full Disk Encryption, and BitLocker
- What's New in BitLocker in Windows 8