Historical Password Check #7767
-
Does anyone know if there is an extension point (or at least if it seems feasible) that would allow me to:
My goal would be to have the historical password (encrypted salt / hash) data stored right with the User document record. I probably would expose a setting to limit number of historical password data being stored. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hmm, there is no suitable event I'm aware of (like |
Beta Was this translation helpful? Give feedback.
Hmm, there is no suitable event I'm aware of (like
ILoginFormEvent
is for login). On the short term, you could overrideAccountController.ILoginFormEvent()
with your route and handle the password change yourself. On the longer term you could add an event handler for it, however, I'm not sure if generally people would accept an event handler that exposes a password directly (even though of course you can get that out somehow anyway but it can encourage security-unconscious behavior).