Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
They can either reset all the passwords and force users to create new ones, or they can reverse lookup the passwords. MD5 hashes are known to be that insecure.
-
rokxer1228ySimple. Next time a user logs in save a new hashed password with another hashin algorithem. Mark the user as using new hash.
-
@rokxer i thought of that too. But that would mean there could be still passwords with md5
-
Doehl1638y@rjcrystal I would use @rokxer solution, till most of the users has updated there password. (Or within n days/months) And the rest after that will get there password reset.
-
Nahh, just hash the md5's with another algorithm, store those hashes and remove all md5 ones. Takes double hashing at login but should work I'd imagine
-
@garrettw If they would hash them(the MD5s) with bcrypt/scrypt, or Argon2, they are pretty secure, in all cases definitely much more secure.
Related Rants
Okay so if a company decides to use md5 for hashing passwords after a million users already registered how the hell will they transition to any other way of storing passwords. As they don't have plaintext to convert them into the new hashing function.
undefined
question
passwords