I took over a project that involves user passwords being stored in a DB using the php crypt() function. I don't know any of the passwords which I need to login. I know the salt that was used with the function but I'm unsure of how I can easily unencrpyt the hash to get the original password?
Can I just generate a new password using the crypt(known salt) function and update the appropriate records?
Thanks in advance.