tips on cracking SHA1 hash
#2
Quote:SHA1 hash with salt
First, choose the right mode, speed is not the same for all:
Code:
110    sha1($pass.$salt)
120    sha1($salt.$pass)
130    sha1(utf16le($pass).$salt)
140    sha1($salt.utf16le($pass))

Quote:minimise the keyspace
To achieve that, you need to have hints about charset (a-z A-Z etc)/ keyboard used ? For example, a russian keyboard is not the same as an English or a Spanish one. Any weird letters?
If you don't have any clues, I would go for wordlists + rules. If it is really random, you'll need to go for a brutefroce.
Reply


Messages In This Thread
tips on cracking SHA1 hash - by ninjahhash - 09-23-2020, 08:41 PM
RE: tips on cracking SHA1 hash - by Mem5 - 09-24-2020, 10:10 AM
RE: tips on cracking SHA1 hash - by ninjahhash - 09-24-2020, 11:04 PM
RE: tips on cracking SHA1 hash - by philsmd - 09-24-2020, 11:11 PM