Hello,
As I read at
http://www.governmentsecurity.org/forum/in...showtopic=15193 ,
it is said that it is not possible cracking salted md5 hashes using rainbowtables.
The way I understand it, is that the salted hashes are md5 hashes of 2 hashes.
So simplified, it would look a bit like this:
salt MD5 hash = aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
pass MD5 hash = bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
final, salted hash = md5(aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb)
So in order to crack the pass,
you should first crack the salted hash, then take the last 32 characters of the 'plaintext' and crack this as another hash, right?
So the reason it is 'impossible' to crack these hashes using rainbowtables is because the plaintext is to long (64 characters)?
Am I right, or am I missing something?