Help for cracking SHA1 password:salt
#2
Simple.

1 - You need to reformat your hashes. The first 9 bytes are the salt and the rest is the actual sha1 hash, use the following sed command to reformat:
Code:
sed "s#^\(.\{9\}\)\(.\{40\}\)$#\2:\1#"
As you can see we need it in HashConfusedalt.

2 - Use oclHashcat-plus-0.09 with -m110.

3 - That's it!


Messages In This Thread
RE: Help for cracking SHA1 password:salt - by M@LIK - 10-15-2012, 09:58 PM