mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
. Guest access check-point
. Fixes to document/space details screen when expanding/collapsing the Links panel . Fix to Saved Searches to handle AuthenticationException for Guest user access to saved searches folder . Fix to New User and Edit Password dialogs to fire text changed events when paste is used to fill in form fields git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2164 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -28,6 +28,7 @@ import org.alfresco.filesys.server.config.ServerConfiguration;
|
||||
import org.alfresco.filesys.server.core.SharedDevice;
|
||||
import org.alfresco.filesys.smb.server.SMBSrvSession;
|
||||
import org.alfresco.filesys.util.DataPacker;
|
||||
import org.alfresco.filesys.util.HexDump;
|
||||
import org.alfresco.model.ContentModel;
|
||||
import org.alfresco.repo.security.authentication.AuthenticationComponent;
|
||||
import org.alfresco.repo.security.authentication.MD4PasswordEncoder;
|
||||
@@ -207,6 +208,7 @@ public class AlfrescoAuthenticator extends SrvAuthenticator
|
||||
}
|
||||
|
||||
// Return the challenge
|
||||
DataPacker.putIntelLong( 0L, key, 0);
|
||||
|
||||
return key;
|
||||
}
|
||||
@@ -268,6 +270,9 @@ public class AlfrescoAuthenticator extends SrvAuthenticator
|
||||
|
||||
if ( md4hash != null)
|
||||
{
|
||||
if ( logger.isDebugEnabled())
|
||||
logger.debug("Authenticate username=" + client.getUserName() + " md4=" + HexDump.hexString(md4hash));
|
||||
|
||||
// Check if the client has supplied an NTLM hashed password, if not then do not allow access
|
||||
|
||||
if ( client.getPassword() == null)
|
||||
|
Reference in New Issue
Block a user