I am new to Security and was trying to learn how can I crack my own user's databases. I have user's salt, password hashes and username. The SHA-256 password hash is computed from the concatenation of 3 strings i.e. one constant string potPlantSalt, the password, and the
salt. SHA-256 output has been converted into the hexadecimal format and truncated
to 32 characters before storing into the database as a string.
truncate ( hexstring ( SHA256 ( " potPlantSalt " + password + salt ) ) )
I have data like:
username: max
password hash: 2b1ac087bd54ea9dcbfba2c3e63b2335
salt: 5aa8698c4022fe1d
How can I know above user decoded password?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…