我有以下代码 我正在尝试实现ldap身份验证,但我认为它没有发生。
我的安全配置
@EnableWebSecurity
@Configuration
@Order(SecurityProperties.ACCESS_OVERRIDE_ORDER)
public class Config extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http.httpBasic().and().authorizeRequests().antMatchers("/*")
.permitAll().anyRequest().authenticated().and().csrf()
.disable().httpBasic().and().csrf()
.csrfTokenRepository(csrfTokenRepository()).and()
.addFilterAfter(csrfHeaderFilter(), CsrfFilter.class);
}
@Override
protected void configure(AuthenticationManagerBuilder auth)
throws Exception {
auth.ldapAuthentication()
.userSearchFilter("(uid={0})")
.userSearchBase("dc=intern,dc=xyz,dc=com")
.contextSource()
.url("ldap://192.168.11.11:1234/dc=intern,dc=xyz,dc=com")
.managerDn("username")
.managerPassword("password!")
.and()
.groupSearchFilter("(&(objectClass=user)(sAMAccountName=" + "username" + "))");
}
private Filter csrfHeaderFilter() {
return new OncePerRequestFilter() {
@Override
protected void doFilterInternal(HttpServletRequest request,
HttpServletResponse response, FilterChain filterChain)
throws ServletException, IOException {
CsrfToken csrf = (CsrfToken) request
.getAttribute(CsrfToken.class.getName());
if (csrf != null) {
Cookie cookie = WebUtils.getCookie(request, "XSRF-TOKEN");
String token = csrf.getToken();
if (cookie == null || token != null
&& !token.equals(cookie.getValue())) {
cookie = new Cookie("XSRF-TOKEN", token);
cookie.setPath("/");
response.addCookie(cookie);
response.sendRedirect("/notAllowed");
}
}
filterChain.doFilter(request, response);
}
};
}
private CsrfTokenRepository csrfTokenRepository() {
HttpSessionCsrfTokenRepository repository = new HttpSessionCsrfTokenRepository();
repository.setHeaderName("X-XSRF-TOKEN");
return repository;
}
}
我的控制器
@RequestMapping(value = { "/test" }, method = RequestMethod.GET)
public @ResponseBody String retrieve() {
System.out.println("line 1");
System.out.println("line 2");
return "hello";
}
@RequestMapping(value = { "/notAllowed" }, method = RequestMethod.GET)
public @ResponseBody HttpStatus login() {
return HttpStatus.FORBIDDEN;
}
我的目标是:
我想实现ldap身份验证。 U 服务器名和密码将来自浏览器,尽管我也尝试使用硬编码的用户名和密码。
如果用户是真实的,那么过滤器将通过检查令牌来检查授权。
如果这是第一次请求,则会生成新令牌并发送。 如果未找到,则会发送 HTTP状态禁止。
我有以下问题:
当我第一次从浏览器运行时它会返回禁止但它也会在控制台中打印“第1行和第2行”,虽然它不会返回你好但是禁止。
我的htpSecurity和ldap配置好吗?
从第二次请求它总是返回你好,我试图打开新标签,新请求但仍然可以正常工作。如果我重新启动服务器那么只有它会生成令牌< / strong>并将其与cookies token.what进行比较,如果两个人使用相同的系统(不同的时间)。
我究竟能测试ldap身份验证吗?我使用POSTMAN作为客户。
如果我的遗失了一些信息,请告诉我。 我将感谢您的回答。
答案 0 :(得分:6)
首先,我认为你的HttpSecurity配置是错误的。您想要保护所有端点。不是吗?
所以将其更改为以下内容:
http.httpBasic()
.and()
.authorizeRequests()
.anyRequest()
.authenticated()
.and()
.csrf()
.csrfTokenRepository(csrfTokenRepository())
.and()
.addFilterAfter(csrfHeaderFilter(), CsrfFilter.class);
此外,我不确定你的ldap配置是否正确。我想你可以把它减少到以下几点:
auth.ldapAuthentication()
.userSearchFilter("uid={0}")
.contextSource()
.url("ldap://192.168.11.11:1234/dc=intern,dc=xyz,dc=com");
确保您的userSearchBase是否正确。它没有&#34; ou&#34;。
如果您没有任何不同的组织单位,则只需删除userSearchBase
为了提供更好的帮助,我需要了解你的ldap的结构。
如果你想检查你的HttpSecurity配置,你可能不会首先使用ldap并改为使用inMemoryAuthentication:
auth.inMemoryAuthentication().withUser("user").password("password").authorities("ROLE_USER");