我正在开发一个使用Spring和Spring Security with LDAP的项目。在MD5用户密码之前,我的项目使用LDAP很好。现在我们MD5用户密码我试图在Spring XML中找到一种方法,在检查LDAP之前告诉Springs到MD5密码。
下面是我的XML
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/security"
xmlns:beans="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:jdbc="http://www.springframework.org/schema/jdbc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/jdbc
http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
http://www.springframework.org/schema/security
http://www.springframework.org/schema/security/spring-security-3.0.xsd">
<http auto-config="true" use-expressions='true'>
<intercept-url pattern="/friends/**" access="isAuthenticated()" />
<intercept-url pattern="/articles/**" access="isAuthenticated()" />
</http>
<authentication-manager>
<ldap-authentication-provider
user-search-filter="(uid={0})" user-search-base="ou=sampleusers" />
</authentication-manager>
<beans:bean id="contextSource"
class="org.springframework.security.ldap.DefaultSpringSecurityContextSource">
<beans:constructor-arg value="ldap://localhost:389/dc=xxxwf,dc=org" />
<beans:property name="userDn" value="cn=admin,dc=xxxwf,dc=org" />
<beans:property name="password" value="sabrina123" />
</beans:bean>
<beans:bean id="ldapAuthProvider"
class="org.springframework.security.ldap.authentication.LdapAuthenticationProvider">
<beans:constructor-arg>
<beans:bean
class="org.springframework.security.ldap.authentication.BindAuthenticator">
<beans:constructor-arg ref="contextSource" />
<beans:property name="userDnPatterns">
<beans:list>
<beans:value>uid={0},ou=sampleusers</beans:value>
</beans:list>
</beans:property>
</beans:constructor-arg>
</beans:bean>
<ldap-server url="ldap://127.0.0.1:389/dc=xxxwf,dc=org" />
<beans:bean id="propertyConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<beans:property name="location" value="classpath:jdbc.properties" />
</beans:bean>
<beans:bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
<beans:property name="driverClassName" value="${database.driver}" />
<beans:property name="url" value="${database.url}" />
<beans:property name="username" value="${database.user}" />
<beans:property name="password" value="${database.password}" />
<beans:property name="initialSize" value="5" />
<beans:property name="maxActive" value="10" />
</beans:bean>
</beans:beans>
答案 0 :(得分:1)
密码应通过安全连接以明文形式发送,不应使用摘要进行预编码或以任何方式预编码 - 预编码密码可防止目录服务器执行密码质量检查。目录服务器加密或散列明文密码,并将密码与目标条目中加密/散列的密码进行比较,并在绑定响应中返回成功或失败。
答案 1 :(得分:0)
试试这个:
<security:authentication-manager>
<security:ldap-authentication-provider>
<security:password-compare>
<security:password-encoder ref="passwordEncoder">
</security:password-encoder>
</security:password-compare>
</security:ldap-authentication-provider>
</security:authentication-manager>
<bean id="passwordEncoder"
class="org.springframework.security.authentication.encoding.Md5PasswordEncoder">
</bean>
我没有尝试使用LDAP。但它肯定适用于“普通”(非LDAP)身份验证提供程序。
答案 2 :(得分:0)
Terry的回答是正确的,如果您使用绑定身份验证,Spr Sec LDAP客户端将尝试使用提供的用户名和明文密码绑定到LDAP(顺便说一句,这就是为什么在使用绑定身份验证时始终建议使用SLDAP的原因)
如果您使用密码比较身份验证,则必须对用于比较的密码进行散列或编码,使其与LDAP存储库中存储的密码完全匹配。
因为看起来你正在使用绑定身份验证,所以你应该没问题。
LDAP section of the manual中已经详细介绍了这些概念。