Skip to content

Latest commit

 

History

History
38 lines (23 loc) · 1.06 KB

DiskCryptor-HOWTO.md

File metadata and controls

38 lines (23 loc) · 1.06 KB

Cracking DiskCryptor with JtR

Heres are steps to crack DiskCryptor encrypted partitions with JtR Jumbo.

  1. Extract DiskCryptor hashes from DiskCryptor encrypted partitions.

    $ ../run/diskcryptor2john.py  # see program's help
    
    $ ../run/diskcryptor2john.py /dev/sdb1 >> hashes
    

    The diskcryptor2john.py program requires Linux to run. See step 2, in case you don't have Linux and want to get Linux going quickly.

  2. (Optional) Install SystemRescueCd to a USB stick. Boot from this USB stick.

  3. Run john on the extracted hashes.

    $ ../run/john hashes
    

    For taking advantage of GPU acceleration, use a command like,

    $ ../run/john --format=diskcryptor-opencl hashes
    
  4. See the help files included with JtR Jumbo to customize your attacks.