cosmoshell Posted October 11, 2009 Share Posted October 11, 2009 I edited all the php files so I could have a users table, only problem is when another script goes to read the password it cant becouase its hashed or encrypted, anyone know of any quick and dirty little changes i can make so the password is readable by other scripts? Link to comment https://forums.phpfreaks.com/topic/177290-anyone-know-how-i-can-get-getboo-to-not-encrypt-password-in-mysql/ Share on other sites More sharing options...
jon23d Posted October 11, 2009 Share Posted October 11, 2009 If your passwords are stored with SHA or MD5 hashes, then there is no unencrypting possible. Link to comment https://forums.phpfreaks.com/topic/177290-anyone-know-how-i-can-get-getboo-to-not-encrypt-password-in-mysql/#findComment-934791 Share on other sites More sharing options...
cosmoshell Posted October 11, 2009 Author Share Posted October 11, 2009 If your passwords are stored with SHA or MD5 hashes, then there is no unencrypting possible. I mean to not have the password "SHA or md5" in the first place. right now I have ardvark topsites and getboo doing this. theres got to be a simple way to turn off or remove the code that does this. Link to comment https://forums.phpfreaks.com/topic/177290-anyone-know-how-i-can-get-getboo-to-not-encrypt-password-in-mysql/#findComment-935148 Share on other sites More sharing options...
cosmoshell Posted October 12, 2009 Author Share Posted October 12, 2009 both apear to use md5. Link to comment https://forums.phpfreaks.com/topic/177290-anyone-know-how-i-can-get-getboo-to-not-encrypt-password-in-mysql/#findComment-935152 Share on other sites More sharing options...
Mark Baker Posted October 12, 2009 Share Posted October 12, 2009 Why do your scripts need to read the password? If for logging in, then you hash the password that the user has entered (using md5), and then compare it with the value that's in the database. There is no good reason why you should need to see the values from the database in plaintext. Link to comment https://forums.phpfreaks.com/topic/177290-anyone-know-how-i-can-get-getboo-to-not-encrypt-password-in-mysql/#findComment-935310 Share on other sites More sharing options...
pastcow Posted October 12, 2009 Share Posted October 12, 2009 As everyone else has said there is no way to reverse all MD5 hashes - you can however construct a database of MD5'd strings and binary search them http://www.idontplaydarts.com/code/reverse-md5/ http://md5.gromweb.com/ This however is not really practical for what you want to do.. If you need to use the password for something (like sending a password reminder) its probably best just to send a link to the users email that they can then use to reset their password.. Link to comment https://forums.phpfreaks.com/topic/177290-anyone-know-how-i-can-get-getboo-to-not-encrypt-password-in-mysql/#findComment-935317 Share on other sites More sharing options...
cosmoshell Posted October 12, 2009 Author Share Posted October 12, 2009 As everyone else has said there is no way to reverse all MD5 hashes - you can however construct a database of MD5'd strings and binary search them http://www.idontplaydarts.com/code/reverse-md5/ http://md5.gromweb.com/ This however is not really practical for what you want to do.. If you need to use the password for something (like sending a password reminder) its probably best just to send a link to the users email that they can then use to reset their password.. I was saying to not have them hashed in the first place. however I noticed earlier that its not even writing to the table in the first place, so maybe the hash isent the problem anyways lol. Link to comment https://forums.phpfreaks.com/topic/177290-anyone-know-how-i-can-get-getboo-to-not-encrypt-password-in-mysql/#findComment-935366 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.