Truecrypt problem

Soldato
Joined
6 Apr 2009
Posts
2,943
Location
Near Manchester
OK please let me explain a bit first.

One of my Friends passed away last year and his partner is still having to deal with the fallout (bills, subscriptions, documents etc) and needs access some files on a usb stick, but my Friend was a paranoid chap and used truecrypt to encrypt it.

All that is known is that the password is an 8 letter word but that word is made into a 32 letter password by writing it forward, backward, forward in caps and then backward in caps.

I have found on google a program that works on linux called truecrack.

I have linux installed via dualboot on a laptop here.

Would I be able to use this program to hack the password?

If so how long would it take?

Is any of this even possible given how the password is constructed?

If so is there anyone on here that would be able to point me in the right direction?

Cheers
 
You may be able to brute force it with a dictionary attack given what you know. Its a matter of getting every 8 letter word from a dictionary (/usr/etc/dict iirc) and then generating an attack dictionary of 32 character passwords using his pattern for truecrack to try out.

If he did anything else such as substituting digits for letters e.g. passw0rd then you're stuffed though.
 
You may be able to brute force it with a dictionary attack given what you know. Its a matter of getting every 8 letter word from a dictionary (/usr/etc/dict iirc) and then generating an attack dictionary of 32 character passwords using his pattern for truecrack to try out.

If he did anything else such as substituting digits for letters e.g. passw0rd then you're stuffed though.

This, if it's an 8 letter word in the dictionary, you just need to write a program that takes each dictionary 8 letter word and applies the mask that you have stated. You only have as many 8 letter words that are in the dictionary to try.

You then need to try truecrack with the dictionary file against the container.

I may just give this a go myself. It's been a while since I've had a change to stretch my Python scripting.

Edit: /etc/dictionaries-common/words is the path in Ubuntu
 
Last edited:
Back
Top Bottom