Quite a common subject for most of you guys. I'm building a webapp in Java, using Spring + Spring Security + Hibernate + MySQL + etc...
I'm in the process of implementing the "reset password" module. I already know the process flow and have all the forms and corresponding controllers. I just would like to know, before writing code all over the place, if I'm starting with the right foot and then continue improving it.
MySQL table :
PASSWORD_CHANGE_REQUESTS (
TOKEN VARCHAR(126) NOT NULL,
USERNAME VARCHAR(50) NOT NULL,
CREATION_TIME DATETIME NOT NULL,
PRIMARY KEY(TOKEN)
)
I've seen that some posts recommend a EXPIRE_DATE field. Is it really worth it?
Unique token:
I'm using a Spring SHA encoder with username + timestamp as parameters (+ required salt value) which returns strings such as: 92c303b9740da5959418c32d04b6ec6f4ca61637.
Does this method really generate a unique token for the URL? Or is there a better way to do it?
In Java, the timestamp is generated like this:
Date date = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy h:mm:ss");
String timestamp = sdf.format(date);
