mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
ALF-10997: User ID case sensitivity issues with internal NTLM authentication
- Fix by Pavel git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@32811 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -446,6 +446,14 @@ public abstract class BaseNTLMAuthenticationFilter extends BaseSSOAuthentication
|
||||
String workstation = type3Msg.getWorkstation();
|
||||
String domain = type3Msg.getDomain();
|
||||
|
||||
// ALF-10997 fix, normalize the userName
|
||||
String normalized = personService.getUserIdentifier(userName);
|
||||
|
||||
if (normalized != null)
|
||||
{
|
||||
userName = normalized;
|
||||
}
|
||||
|
||||
boolean authenticated = false;
|
||||
|
||||
// Check if we are using cached details for the authentication
|
||||
|
Reference in New Issue
Block a user