From your (group) opinion, when sending a unique URL to a user, what steps
are a must in making sure the link can't be hacked.
i.e. Bad link
www.example.com?id=10&action=reset_password
would be better as
https://www.example.com?id=505B6EF41...reset_password
But ultimately a hacker could work their way through all combinations and
reset all passwords on all users.
So you could use
https://www.example.com?id=505B6EF41...indexnumber=10
(probably not using dbindexnumber as a variable) That way the hacker would
need to get both right to reset the password.
But how far do you go reasonably, without getting paranoid?
Nel.
are a must in making sure the link can't be hacked.
i.e. Bad link
www.example.com?id=10&action=reset_password
would be better as
https://www.example.com?id=505B6EF41...reset_password
But ultimately a hacker could work their way through all combinations and
reset all passwords on all users.
So you could use
https://www.example.com?id=505B6EF41...indexnumber=10
(probably not using dbindexnumber as a variable) That way the hacker would
need to get both right to reset the password.
But how far do you go reasonably, without getting paranoid?
Nel.
Comment