Tagged Questions

RBAC is short for Role Based Access Control, an authorization and access control model in which access to restricted resources is granted or denied based on whether the requester's identity is associated with one or more role classifications required by the restricted resource.

learn more… | top users | synonyms

13
votes
8answers
11k views

Best Role-Based Access Control (RBAC) database model

What is the best database schema to track role-based access controls for a web application? I am using Rails, but the RBAC plugin linked by Google looks unmaintained (only 300 commits to SVN; latest ...
5
votes
6answers
195 views

Where in the call stack should role checks be done?

In my typical app, the user clicks a button in an aspx page, invokes a C# business object, then runs a stored procedure. Should role checks be done at the top of the stack, the bottom of the stack ...
4
votes
1answer
1k views

DB Schema of a Role Based Access Control

I'm currently developing a member administration for a local association here and I'm developing the database schema at the moment. I'd like to share it with you to improve it and give other an ...
4
votes
3answers
1k views

Role Based Access Control (RBAC) - .Net Component

In my job we are trying to consolidate the Authentication of the application farm with Windows Identity Fundation (WIF) or some custom component based in Membership Provider. With this, we need to ...
3
votes
4answers
761 views

Non RBAC User Roles and Permissions System: a role with properties

We are currently designing a User Roles and Permissions System in our web application (ASP.NET), and it seems that we have several cases that do no fit within the classical Role-Based Access Control ...
3
votes
2answers
799 views

Access control - is RBAC worth implementing in a hierarchical user management system?

Lately I've been considering the best access control model to use in my application. I've been reading on RBAC and the role concept is nice (especially if you have a huge amount of different ...
3
votes
1answer
1k views

Role Based Access Control DB Design

This question isn't about the database design of the RBAC system itself, but rather how to use this database in conjunction with the application specific database when that web application allows its ...
2
votes
1answer
67 views

Yii not giving Valid checkAccess results

I am learning Yii and am trying to develop RBAC now the issue is that I have created roles and so on executed that script via shell I have database tables in place and that Roles and everything gets ...
2
votes
3answers
242 views

Setting up a user / roles management system - with multi-tenancy

Does anyone have any schema's, data models, or suggestions for creating a user / roles management system that accounts for multi-tenancy. For example, a user in organization A, may be assigned a role ...
2
votes
4answers
598 views

Does anyone actually use Attribute Based Access Control?

I've seen Attribute Based Access Control mentioned several times on Stack Overflow (example). However, a Google search and stack overflow search later I cannot find much, only abac (which doesn't seem ...
2
votes
2answers
281 views

implimenting set theory operations in php

Does anyone have any examples or know of any resources that show how to implement set theory operations in pure php?
2
votes
2answers
1k views

Programmatic authentication in Java EE 6

is it possible to authenticate programmatically a user in Java EE 6? Let me explain with some more details: I've got an existing Java SE project with Servlets and hibernate; where I manage manually ...
2
votes
0answers
692 views

Representing RBAC actors in LDAP

When implementing an RBAC model using an LDAP store (I'm using Apache Directory 1.0.2 as a testbed), some of the actors are obviously mappable to specific objectClasses: Resources - I don't see a ...
2
votes
2answers
581 views

How can I retrieve all the roles a user is in?

Is there a way to get a list of roles a Windows authenticated user is in, without explicitly checking by WindowsPrincipal.IsInRole method?
2
votes
2answers
1k views

rbac for asp.net?

Is there an open rbac framework for asp.net? there a few solutions for rails but i cant find a simple rbac system for asp.net. is there something that can be used and extended?
1
vote
1answer
25 views

Questions related to RBAC implementation

I have some questions related to RBAC (hirearchy model). Following are the scenarios Assume i have three roles, one parent role and three different types of permission Parent Role: branch manager. ...
1
vote
2answers
157 views

DB schema for RBAC with multiple levels of roles

I'm trying to come up with a DB schema for an RBAC, and I want to be able to create "departments" and "positions". Positions will extend the generic privileges of departments. Should I just create a ...
1
vote
1answer
63 views

Best way to implement an ACL on an ESB

I am currently trying to implement an ACL on an ESB (Camel apps on Servicemix) which will enable each service artifact to decide if current user is a valid user and if it has required priviledge to ...
1
vote
0answers
66 views

Design a complex access/permissions system, what approach should I take

I am using PHP+MySQL right now, but really can adopt any tool out there. I have a system with about 50000 users which are arranged into groups, which are arranged into departments which are arranged ...
1
vote
0answers
310 views

Role based access control for JSF 1.2?

I need suggestions on implementing role based access control in an existing JSF 1.2 application. Here are a few constraints I have: Stuck with JSF 1.2, cannot upgrade to a higher version No custom ...
1
vote
0answers
381 views

Simple yet Dynamic MVC Authentication & Role Bases Access

I've recently migrated from traditional ASP.Net web-form based development to MVC2 and I've been looking for the best practices and norms that MVC can leverage to create a long-term maintainable web ...
1
vote
1answer
779 views

In the Yii framework, is accessControl and accessRules independent of RBAC?

In Yii, there is an accessControl filter and a accessRules method that handle simple authorization to certain tasks. In my application, I have RBAC to authorize users into roles. My question is ...
1
vote
3answers
517 views

Is ASP.NET role based security a true role based access control system?

From what i have read from this paper I understand that a role based access control system is one where users can be assigned to roles where roles specify permissions to perform operations on objects ...
1
vote
0answers
183 views

How to use RBAC (or access control) on Google App Engine?

Has anyone used some RBAC (or other access control) in a GWT based project deployed in App Engine? Or actually how to manage GWT-RPC calls to by role based? Or is it easier to only "send the code" to ...
1
vote
2answers
94 views

Sharing users between 2 databases

I am developing this application in PHP. The application will consist of an adminstration area which will also contain employee functions. The other part of the application is the customer facing ...
1
vote
3answers
1k views

Role Based Access Control

Are there any java open source role-based access control system?
1
vote
1answer
451 views

Non RBAC User Roles and Permissions System: checking the user's City

We are currently designing a User Roles and Permissions System in our web application (ASP.NET), and it seems that we have several cases that do no fit within the classical Role-Based Access Control ...
1
vote
1answer
77 views

Visual modelling of permissions

I have come into the habit of hand-sketching various diagrams for software I create. My software is mostly for the web. I use E-R diagramming for the data logic (model of MVC) , and a personally ...
1
vote
3answers
237 views

Include admin role in users table from roles table

Is there a way to query users table like this: | id | username | ----------------- | 1 | user1 | | 2 | user2 | | 3 | user3 | and user_roles table: | id_user | id_role | ...
0
votes
3answers
266 views

Role based access control - correct MVC pattern

I started using the MVC pattern a half year ago, and I still have some misunderstandings. Now I want to implement a role based access control in my application. However, my question is not about ...
0
votes
0answers
35 views

Seperate Authlogic Login Screens for different user types

I am building a site with three separate sections for three user types. I have a basic User model and then four child models inheriting from it: Delegate, Invitee, Administrator and ...
0
votes
1answer
127 views

Role-based security implementation in LDAP

I'm working on role-based security implementation in LDAP and Java. Specifically, I have the following objects that I need to represent in LDAP: Users Corporate groups of users - HR, Finance etc. ...
0
votes
1answer
144 views

CException error with RBAC ACL using authManager in yiic shell tool

I get the below error when running a custom command from the yiic shell. I am using the latest MAMP 2.0.2 on OS X 10.7.2 I am not sure what the error means by reader or member does not exist? Line ...
0
votes
1answer
193 views

Advise needed - which Rapid Application Development Framework using PHP and MVC meets this specific need?

we are a parents initiative who runs a small kindergarden / child nursery and we set out to build a basic web based documentation and reporting application for our nursery. After spending a week ...
0
votes
2answers
77 views

How to allow access to PHP methods according to user's role?

I have a basic User model that satisfies all the needs of a generic user. I now need to create several different roles for the user, each with about 10-20 different methods that are unusable by the ...
0
votes
2answers
95 views

Django per-object permissions

I have users that each are associated with a list of real estate properties they are allowed to access. Multiple users may have permission to view the same site. How would I set this up in django? I ...
0
votes
1answer
111 views

Java, EJB framework, RBAC

Can any body give me idea how to do RBAC with the help of EJB framework? I am new in Java, so I need details description about EJB and RBAC.
0
votes
2answers
34 views

looking for an opensoure authenciation releated project to learn

I have three years's expeirence of java develping. Now I am working with an system which is related to the ahthenciation. I am not good at this. So I wonder if there is any opensoure project I can ...
0
votes
1answer
38 views

RBAC for single application on WebSphere App Server

I want to use a role based access control for the authorization of one of the applications on a WebSphere application server, but as far as I've seen the users and roles are defined on application ...
0
votes
0answers
819 views

Symfony2 ACL, Roles, and Users

I am working in Symfony2 with both the ACL and RBAC systems using the Security Annotations found in the SecurityExtraBundle. I am able to assign ACL permissions to User security identities and checks ...
0
votes
1answer
110 views

“objects” in a RBAC system

am looking at role-based authentication for the web app at my work. we use coldfusion, which does not seem to have any good rbac libraries made, so we might have to make one from scratch. looking at ...
0
votes
1answer
123 views

Passing bizRule parameters to RBAC via accessRules?

From my research I don't think this is possible but I want to make sure. Is it possible to pass parameters to RBAC bizRule via accessRules. Right now I need to check if someone is a post owner (along ...
0
votes
1answer
145 views

Suggestions to implement Role based authorization for an existing application in Flex

I have an application that is coded using Flex 3 on UI side and java @ the service layer, along with BlazeDS. Now we need to authorize the users accessing the system based on the roles that are ...
0
votes
0answers
58 views

user and admin design

In my application,there are users and admin(two different types),the user can belong to more than one department,and they can only see the tasks belongs their department(a department can have more ...
0
votes
1answer
349 views

Long and Complex MySQL hierarchical Nested Set model optimization for NIST level 2 RBAC

Implemented NIST Level 2 RBAC for jFramework, The core SQL is listed below : "SELECT COUNT(*) AS Result FROM /* Version 2.05 */ `".reg("jf/users/table/name")."` AS TU JOIN ...
0
votes
4answers
290 views

How to resolve Zend_Acl permission conflict for user with multiple roles?

I'm trying to create an RBAC with Zend_Acl. The question I have is that I want users to be able to have multiple roles, but I'm not sure how to solve permission conflicts between the various roles? ...
0
votes
1answer
201 views

Security Architecture - Settings to drive UI and Priveledges (Rights) - Role-Based, per User-Account

How do large companies implement their security requirements which are centralized and used to drive things people can do (allowed to call a certain web-service, submit an order, etc.) as well as to ...
0
votes
1answer
135 views

Need some advice on my own Role Based Access Control (RBAC)

I have a pretty simple profile page where users can upload images and videos. I have implemented my own role system and I'm not using .NET (I wanted to learn and builded my own). I'll have 10ยด000 ...
0
votes
1answer
428 views

ASP.NET, Open LDAP role based security

I have couple of applications developed in asp.net with authentication from Open LDAP. The applications are working fine and I am having no problem with authentication. The main problem is to manage ...
0
votes
1answer
481 views

Are BizRules (Business Rules) in RBAC really safe?

The idea of BizRules in RBAC (Role Based Access Control) makes me feel sick. It is basically a way to define a script to run against data during authorization. For example, Yii framework supports it: ...

1 2