Aorimn / dislocker

FUSE driver to read/write Windows' BitLocker-ed volumes under Linux / Mac OSX
GNU General Public License v2.0
1.58k stars 196 forks source link

Can not decrypt bitlocker with PIN #260

Open minhphungbk03 opened 3 years ago

minhphungbk03 commented 3 years ago

Dear Romain Coltel & ALL,

I face with the issue as following about dislocker. I would appreciate if someone could help:

ENCRYPT STEPS:

DECRYPT STEPS:

P/S: It is possible to decrypt using recovery key. Thank for your time & your support! /PhungCM

Dieterbe commented 2 years ago

I have the same problem with a dell xps 17. Windows 11 uses fingerprint auth (with "PIN" fallback). I was never was asked a password during windows setup.

Decription fails with same message as OP when I try to open the device. I have tried entering the pin as the password, to no avail.

Tue Dec  7 22:29:20 2021 [CRITICAL] None of the provided decryption mean is decrypting the keys. Abort.
Tue Dec  7 22:29:20 2021 [CRITICAL] Unable to grab VMK or FVEK. Abort.
bendy05 commented 2 years ago

I recently had this issue and came across your post in my search for the answer. I wasn't able to find a link to a solution so I decided to post the solution that worked for me.

My problem was that I was appending the bitlocker password with the decrypt command like you did above: dislocker -r -V /dev/sda3 -u159456 -- -o nonempty /media/bitlocker_Disk3

My solution was to remove the password and run the code without it. You'll be prompted to enter your bitlocker password after running the command. (I also used an alternate version of your code): dislocker -r -V /dev/sda3 -u -- /media/bitlocker_Disk3

I hope this helps!!