Forum Kurallarını Okumak İçin Lütfen Tıklayınız .

Descomplica Db(5.3M) Hash 

niiiice, do u have any info in what hash type these are?


i think PBKDF2-HMAC-SHA1 but they have to be formatted properly first and i forgot how to do that
 
Hi, do you have any information on the hash used for the passwords, can't seem to identify the hash used
 
For those interested, the format to crack the hashes (PBKDF2-HMAC-SHA1) is:

sha1:[iteration count]:[salt in base64]:[digest in base64]

All we are given is the digest, so we are missing the salt and the iteration count.
Once we have that the hash can be cracked using:

hashcat -m 12000 -a 0 -w 3 hash.txt dict.txt
Where hash.txt contains the hash in the format sha1:[iteration count]:[salt in base64]:[digest in base64]

If anyone has any idea about the salt and/or the iteration count that would be very helpful!
 

Users who are viewing this thread

Home Register
Top Bottom