The BitLocker encryption algorithm implemented by Hasleo BitLocker Anywhere is fully compatible with the BitLocker encryption algorithm used by Windows 10, so you don't have to worry about compatibility and security issues. Other than that, you are SOL short of brute forcing the bitlocker/logon password depending on how bitloker was configured. Ophcrack isn't going to to crap for you here. The whole point of whole disk encryption is to prevent offline attacks against the data on the hard drive, like ophcrack uses.
I have a laptop running Windows 7 Ultimate. I have encrypted my drives using BitLocker. Now I have also installed Lubuntu along with Windows. But my encrypted drives are not visible in Linux. How can I fix this?
Peter MortensenHow To Get Around Bitlocker
6 Answers
You can access BitLocker partition under Linux using Dislocker, an opensource driver which is using FUSE (or not).
For that, you need the file on a USB key (the one with the .bek extension) or the recovery password.
Thanks to Aorimn, his solution worked for me. I'm fairly unexperienced with Unix, so it cost a few hours to figure it out. I thought I would describe the steps I took while my backup is running :)
My problem was that I could not boot Windows, and I needed a way to access my files on a Bitlocked partition. In order to do this, you need a bitlocker recovery password (8 groups of digits) and the ability to boot your system from USB.
- Download and install
LiLi
on an other Windows machine (Linux Live USB Creator) - Start
LiLi
and have it download a lightweightubuntu
image. I choseXubuntu
. - Install the image to your USB stick.
- Boot the problematic machine with the USB stick
- When you see the ubuntu boot screen, press a key.
- Under
F6
, set the following options:nomodeset
,acpi=off
,noacpi
andnolacpi
- Boot
ubuntu
. - Make a folder
/media/windows
and/media/mount
. - Download and extract dislocker
sudo apt-get install libfuse-dev libpolarssl-dev
- change directory to the
dislocker/src
folder sudo make
sudo make install
- change directory to
/usr/bin
sudo fdisk -l
- identify the partition which is bitlocked. Mine was
/dev/sda1
. sudo dislocker -r -V /dev/sda1 -p315442-000000-000000-000000-000000-000000-000000-000000 -- /media/windows
(replace your own bitlocker key and source partition)- change dir to
/media/windows
(usesudo -i
if you can't access it) mount -o loop dislocker-file /media/mount
- You should now see your files in a mounted drive of the file manager.
Backups are fairly slow, but it might save some trouble if you do end up reinstalling windows. Good luck!
How To Unlock Bitlocker Without Recover…
I just worked out a way to update Kali Linux and install dislocker
.
Using Kali Linux 1.0.9a i386 bootable DVD
Edit '/etc/apt/sources.list' and add:
Install programs using Terminal:
How To Crack Bitlocker Password
Find drive Bitlocker volume:
Make folders in /mnt: tmp
, dis
.
Run dislocker:
Check if file exists to confirm proper Bitlocker key:
Should return dislocker-file
if correct.
Mount volume:
Browse to /mnt/dis
for access to files.
BitLocker is a proprietary, closed-source drive encryption system only supported by Windows. You'll have to remove BitLocker encryption if you want to access your Windows partitions from Linux.
See What is the difference between disabling BitLocker Drive Encryption and decrypting the volume? for instructions on doing so. It would be advisable to have a backup of your data completed first.
Once the drive is decrypted, you can use TrueCrypt instead; reading a System Encryption volume under Linux isn't supported by default, but someone has figured out a work-around. See How to use TrueCrypt®-encrypted Windows system drives on Linux.
At the very least, review the TrueCrypt documentation and more specifically, the list of supported OSes.
Yet another option is PGP Whole Disk Encryption. See PGP Whole Disk Encryption for Dual Boot Linux and Windows XP.
Peter MortensenThe only thing I've found that might help you is NVbit. It's an experimental fuse driver that allows you to access BitLocker volumes. It's still in an alpha state, and it looks like you'll have to compile the code yourself. It also only allows read-only access, and some things might not work. I think it's your best bet, though.
mwfearnleyHow To Unlock Bitlocker Drive
SaintWackoPlease note that libpolarssl-dev
can't be used, it has been supersede with libmbedtls-dev
so use this instead:
Note: by the way, it was a success using live boot. I am able to read and write. Just follow above steps.
Run5k