TorNix~|nR Posted September 16, 2016 Share Posted September 16, 2016 Hi everyone, I have a login panel script, but I doesn't have security of Forget password (email... etc) can anyone help me? Link to comment
iPrestege Posted September 16, 2016 Share Posted September 16, 2016 You can use a security question to reset a password or using the serial u can use one of them . 3 Link to comment
Simple0x47 Posted September 16, 2016 Share Posted September 16, 2016 Add that feature to it Make a list of questions, when it's choosed encrypt the choosed one and then when it's called on the server compare the md5 hash key's from the list with the choosed one by the user. 2 Link to comment
Nickernator Posted September 17, 2016 Share Posted September 17, 2016 20 hours ago, Simple01 said: Add that feature to it Make a list of questions, when it's choosed encrypt the choosed one and then when it's called on the server compare the md5 hash key's from the list with the choosed one by the user. This indeed, but don't use MD5 since it isn't really safe anymore use Sha 512 for example Link to comment
Simple0x47 Posted September 17, 2016 Share Posted September 17, 2016 I was just giving an example Link to comment
Nickernator Posted September 17, 2016 Share Posted September 17, 2016 7 minutes ago, Simple01 said: I was just giving an example Good good, was just making sure. Since I have seen before that people encrypted everything in MD5, and then database gets leaked and all the data was just gone with thanks to: https://hashkiller.co.uk/md5-decrypter.aspx Or any other md5 decrypter Link to comment
Simple0x47 Posted September 17, 2016 Share Posted September 17, 2016 That decrypter can't decrypt any MD5 key. So Link to comment
RizoN Posted September 18, 2016 Share Posted September 18, 2016 5 hours ago, Nickernator said: Good good, was just making sure. Since I have seen before that people encrypted everything in MD5, and then database gets leaked and all the data was just gone with thanks to: https://hashkiller.co.uk/md5-decrypter.aspx Or any other md5 decrypter You cannot decrypt md5, you can just try to brute-force it by guessing it's original content and seeing if your guess' md5 and original md5 are the same Link to comment
Callum Posted September 18, 2016 Share Posted September 18, 2016 The most obvious method of doing a 'Forgotten my password' feature would be: From the MTA server, use callRemote to trigger a PHP script From the PHP script, send an email containing a link (to another PHP script) to the user's email address When the link is clicked, using the other PHP script, reset the password Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now