Authentication with secure hashing (SHA-1 rather than MD4)

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2012 09:15 AM
Hi all,
We are planning an Alfresco deployment which will (at least initially) run on cloud servers. Since we won't have access to the existing directory server, we planned to use the built-in Alfresco authentication subsystem.
However, this uses MD4 hashes, which are easily broken. authentication-services-context.xml says:
Is it possible, for example, to replace org.alfresco.repo.security.authentication.MD4PasswordEncoderImpl with a bean providing a more secure implementation?
We don't need CIFS etc, so the NTLM compatibility isn't an issue - I understand this is why Alfresco still uses MD4.
Thanks for any pointers…
We are planning an Alfresco deployment which will (at least initially) run on cloud servers. Since we won't have access to the existing directory server, we planned to use the built-in Alfresco authentication subsystem.
However, this uses MD4 hashes, which are easily broken. authentication-services-context.xml says:
<!– Passwords are encoded using MD4 –> <!– This is not ideal and only done to be compatible with NTLM –> <!– authentication against the default authentication mechanism. –> <bean id="passwordEncoder" class="org.alfresco.repo.security.authentication.MD4PasswordEncoderImpl"></bean>
Is there any alternative authentication subsystem for Alfresco that uses a secure hash (SHA-1 or better)?Is it possible, for example, to replace org.alfresco.repo.security.authentication.MD4PasswordEncoderImpl with a bean providing a more secure implementation?
We don't need CIFS etc, so the NTLM compatibility isn't an issue - I understand this is why Alfresco still uses MD4.
Thanks for any pointers…
Labels:
- Labels:
-
Archive
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2012 10:13 AM
Try having a look at:
http://svn.alfresco.com/repos/alfresco-open-mirror/alfresco/HEAD/root/projects/repository/source/jav...
I don't know more about the systems so maybe you should look into the code itself.
Or maybe you'll need to write your own class imitating those but for SHA-1
http://svn.alfresco.com/repos/alfresco-open-mirror/alfresco/HEAD/root/projects/repository/source/jav...
I don't know more about the systems so maybe you should look into the code itself.
Or maybe you'll need to write your own class imitating those but for SHA-1
