How find the hash creation method knowing password, salt, and resulting hash?
If I know the password, the salt (supposed salt actually) and the output hash (sha1 format). How can I find the hash creation method ?
I tried basic stuff like
sha1(salt+password)
sha1(password+ salt)
sha1(salt… Continue reading How find the hash creation method knowing password, salt, and resulting hash?