在Spring安全性中拒绝具有相同角色的多个用户的访问权限

时间:2013-01-11 10:01:21

标签: java spring security spring-mvc spring-security

我遇到过这种情况:我的应用程序有多个角色(管理员,主持人,用户)。主持人和用户可以编辑一些表格。所有的权利都可以。但是当我作为用户(角色用户)登录并更改网址中的ID时,我可以简单地获取并编辑另一个用户(角色用户)的表单。

如何拒绝访问并阻止此类操作?

PS。弹簧和弹簧的安全版本是3.1.2

更新 - 添加了春季安全上下文

<?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"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
                    http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
                    http://www.springframework.org/schema/security
                    http://www.springframework.org/schema/security/spring-security-3.1.xsd">

    <http use-expressions="true" auto-config="false"
        entry-point-ref="authenticationEntryPoint" access-denied-page="/403.jsp">
        <form-login login-page="/login.html"
            authentication-failure-url="/login.html?error=true"
            login-processing-url="/j_spring_security_check"
            authentication-success-handler-ref="successHandler" />
        <logout logout-url="/logout" logout-success-url="/login.html" />
        <intercept-url pattern="/admin/**" access="hasRole('adminViewPermission')" />
        <intercept-url pattern="/moderator/**" access="hasRole('moderatorViewPermission')" />

        <intercept-url pattern="**/form-management"
            access="hasRole('formManagementPermission')" />

    </http>


    <authentication-manager alias="authenticationManager">
        <authentication-provider user-service-ref="userDetailsService" />
    </authentication-manager>

    <beans:bean id="authenticationEntryPoint"
        class="org.springframework.security.web.authentication.LoginUrlAuthenticationEntryPoint">
        <beans:property name="loginFormUrl" value="/login.html" />
        <beans:property name="forceHttps" value="false" />
    </beans:bean>

    <beans:bean id="successHandler"
        class="org.springframework.security.web.authentication.SavedRequestAwareAuthenticationSuccessHandler">
        <beans:property name="defaultTargetUrl" value="/authenticate" />
        <beans:property name="alwaysUseDefaultTargetUrl" value="true"/>
    </beans:bean>

    <beans:bean id="userDetailsService"
        class="com.jack.MyYserDetailsService">
    </beans:bean>
</beans:beans>

1 个答案:

答案 0 :(得分:3)

您似乎希望考虑安全规则的实际域对象。具有用户和角色的正常SpringSecurity设置可以添加如下安全规则:who(具有某个角色的athenticated用户)可以访问某些URL /方法调用。如果您希望能够使用这样的增强规则:who(具有某个角色的athenticated用户)可以访问某些URL /方法调用以及他可以使用哪些域对象,那么您需要使用{{3 }}

编辑。但是,如果你需要像这样的一个安全规则,那么设置ACL可能是一种过度杀伤力。您可以尝试通过自定义Web安全表达式增强实际的SpringSecurity设置:

<intercept-url pattern="/moderator/**" access="hasRole('moderatorViewPermission') and userIsAuthor()" />

userIsAuthor()方法的位置:

  • 从网址中提取对象的ID(我想类似 / moderator / item / 56
  • 检查当前用户是否为项目ID = 56的作者。