In alfrsco Login page how to find its user name and password stroing table in database?

cancel
Showing results for 
Search instead for 
Did you mean: 
sathesh
Member II

In alfrsco Login page how to find its user name and password stroing table in database?

I am currently working on customizing Alfresco Login page, in that where to find user name and password details of all user's in database.

1 Reply
afaust
Master

Re: In alfrsco Login page how to find its user name and password stroing table in database?

Depending on the authentication integration scenario for your Alfresco system, it might not actually store passwords for (most) users in the database. Either way, if passwords are stored they are stored in either MD4 or bcrypt hash form. You should never need to interact with this data directly (even when creating a custom login form), as this is what the Alfresco authentication services already provide.

But to answer the question anyway: users are maintained as nodes within the Alfresco database, meaning that their identity and (hashed) passwords are stored via the alf_node / alf_node_properties tables.