2

我正在使用 Spring Security 3.1,我想在用户登录之前获取来自 URL 的参数。所以我希望访问我的登录页面的用户向我发送一个 redir 参数(包含他想要的 URL在他认证后去)。当我请求页面时,而不是当我尝试提交表单以登录时。

例如:localhost/myApp?redir=my.app.com/custom

如何从 URL 获取 redir 参数?

我尝试了几件事,包括覆盖 SimpleUrlAuthenticationSuccessHandler 和调用 request.getParameter("redir") 但它返回 null。我还尝试实现自己的过滤器 UsernamePasswordAuthenticationFilter 并在尝试身份验证时调用 getParameter(),但返回 null。

更新附加信息:我的登录页面非常简单,基本上:通过 POST 方法调用 /j_spring_security_check 的表单(使用 j_username 和 j_password 参数)。

我的身份验证提供程序实现了 AuthenticationManager,因此在用户通过身份验证后,将返回 Authentication 对象以及授权列表、用户、密码。

我还实现了 SimpleUrlAuthenticationSuccessHandler 并且 onAuthenticationSuccess() 方法将检查他的权限,如果经过身份验证和许可,用户将被重定向到他在 URL 上通知的页面(现在,当我尝试在此调用 request.getParemeter("redir")方法,我得到空值。

public class GetURLFilter extends UsernamePasswordAuthenticationFilter{
@Override
public Authentication attemptAuthentication(HttpServletRequest request, HttpServletResponse response)
        throws AuthenticationException {

    String paginaRedirecionar = request.getParameter("redir");
    request.getSession().setAttribute("redirecionamento", paginaRedirecionar);

    return super.attemptAuthentication(request, response);
}
}

<bean id="authenticationFilter"
    class="com.uolinc.adm.security.GetURLFilter"
    p:authenticationManager-ref="radiusAuthenticationManager"
    p:authenticationFailureHandler-ref="radiusAuthenticationFailureHandler"
    p:authenticationSuccessHandler-ref="radiusAuthenticationSuccessHandler" />

<security:http auto-config="false"
    use-expressions="true"
    access-denied-page="/auth/denied" entry-point-ref="authenticationEntryPoint"
    disable-url-rewriting="true"
    access-decision-manager-ref="accessDecisionManager">

    <security:logout logout-url="/auth/logout" logout-success-url="/auth/login" />

    <security:custom-filter position="FORM_LOGIN_FILTER" ref="authenticationFilter" />
</security:http>

谢谢

4

1 回答 1

3

UsernamePasswordAuthenticationFilterSimpleUrlAuthenticationSuccessHandler提交登录表单期间调用,这是与呈现表单的请求不同的请求。因此,在您提交表单时,不会出现在请求表单期间出现的参数。您需要在会话中缓存参数或将其作为隐藏参数添加到登录表单中,以便使用普通登录参数重新提交(以便您可以使用它AuthenticationSuccessHandler)。

请注意,以这种方式使用客户端提供的数据进行重定向是有风险的,除非您进行了某种验证(例如,检查 URL 是否在您的应用程序中)。否则,攻击者可以提供链接到恶意站点的 URL,并且可能能够在用户不知情的情况下劫持经过身份验证的会话或在安全站点上执行操作。

于 2012-08-08T14:56:00.383 回答