Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
1answer
16k views

CakePHP ACL Database Setup: ARO / ACO structure?

I'm struggling to implement ACL in CakePHP. After reading the documentation in the cake manual as well as several other tutorials, blog posts etc, I found Aran Johnson's excellent tutorial which has ...
7
votes
2answers
5k views

Using C# to get a list of ACLs for Servers and mapped drives

The production change implementers for our IT group have been tasked with reviewing the security for all of the various objects in our group, primarily to make sure that people who have left our ...
5
votes
7answers
1k views

Determine if user can access the requested page?

I have an ASP.Net website with multiple roles, each with access to a separate directory (i.e. admin users can access /admin, shoppers can access /shop etc), using a shared login page. If someone ...
4
votes
9answers
3k views

Preferred database design method for assigning user roles? (Hats vs. Groups)

I have medium sized MySQL database with a primary "persons" table which contains basic contact information about every human being connected to the theatre and theatre school for which I am ...
3
votes
3answers
539 views

What is the best practice for role security for an Intratnet ASP.NET/SQL2K5 environment?

Our current Intranet environment is a little outdated. The current stack has ASP.NET 1.1/2.0 applications that are querying against a SQL 2000 database. For role security, there are user groups on ...
2
votes
1answer
40 views

users assigned a sql azure role

I am tyring to find our what all users have been assigned a perticular role. Is there any view or SQL query for getting this infromation ? Thanks
2
votes
3answers
115 views

mvc site, most secure way to preserve login credentials

ok so, i have this dilemma on how i should save login credentials in mvc at the same time avoid as much hit on the database. i know i can easily use Forms Authentication to save a User instance but is ...
2
votes
1answer
41 views

Authorize users w.r.t assigned groups in ITIM

I am new to ITIM. I am working on an application in JAVA. I want to authorize users based on groups they are assigned to. How can I do that? Is there any api that can fetch user roles/groups by which ...
2
votes
2answers
526 views

Unit Test(mvc) -problem with Roles

I have mvc application and I'm working with poco objects and writing unit test. Problem is that all my test fail when they reach this line of code Roles.IsUserInRole("someUser", "role"). Should I ...
2
votes
3answers
232 views

role based access to methods

I'm implementing system which uses role based access to different methods in classes. For example to perform any action I need to check whether user which uses it can do it. I can write in each ...
2
votes
1answer
1k views

User permission - triggering code on user role (Wordpress)

I'm developing a custom plugin in PHP so existing plugins are not usable. What I want to achieve is that I want to display different url within a post for some users . For users that are registered in ...
2
votes
2answers
267 views

forms login for guest and administrator problem

I have a web project GUI.. I was first working with administrator only. So when the administrator logs in with his username and password i use forms authentication to redirect him to the default ...
2
votes
2answers
837 views

How can I restrict what web parts show up in the Add Web Parts window?

I'd like to expose a web part to some users, but not all of them. How can I show or hide a web part in the Add Web Parts pop up window? I'd like to do this through code, and I'm hoping to use ...
2
votes
3answers
546 views

Using :attr_accessible with role-based authorization

In my online store, users are allowed to change certain properties of their orders (e.g., their billing address), but not others (e.g., the origination ip address). Administrators, on the other hand, ...
2
votes
3answers
1k views

WindowsPrincipal.IsInRole() not returning the expected result

So here's my current code: List<string> rowGroups = GetFileGroups((int)row.Cells["document_security_type"].Value); bool found = false; System.Security.Principal.WindowsPrincipal p = new ...
1
vote
1answer
1k views

How to dynamically decide <intercept-url> access attribute value in Spring Security?

In Spring Security we use the intercept-url tag to define the access for URLs as below: <intercept-url pattern="/**" access="ROLE_ADMIN" /> <intercept-url pattern="/student" ...
1
vote
1answer
102 views

ColdFusion: Application Options Based on Role?

I understand how to restrict entire pages, or even components by implementing <cflogin> and roles. For example: <cfif IsUserInRole("Admin") OR IsUserInRole("Accounting")> ...You can ...
1
vote
1answer
209 views

Oracle dbms.set_role does not work in APEX application

in our j2ee applications, we use secure application role. Basically, the data source use the app user schema to connect to the database. the app user only has create session privileges. the database ...
1
vote
2answers
343 views

windows forms security c#

I am developing a Windows Forms application in C#. I have created user authentication within this application, and I have to restrict access to different functionalities to users depending on their ...
1
vote
2answers
932 views

What is the difference between ROLE_USER and ROLE_ANONYMOUS in a Spring intercept url configuration?

What is the difference between ROLE_USER and ROLE_ANONYMOUS in a Spring intercept url configuration such as the example below? <http auto-config="false" ...
1
vote
1answer
199 views

LDAP for Application Access Control, how much should it control?

A precursor: I've worked now in two enviroments with conflicting principals on this. I am outlining the competing ideas and would like to know which is 'correct' given the scenario described. ...
1
vote
1answer
161 views

Manage User and Roles

In my WPF Desktop sample Book Store application I want to manage Users and Roles. With multiple Users I want to achieve below points 1) Application Should have multiple user 2) User has 3 categories ...
1
vote
0answers
16 views

Expanded securityadmin

I'm aware that sysadmin is documented as the server role necessary for creating logins (SQL/Windows-integrated); nevertheless, I'm tasked to find out if there's any other server role (built-in or ...
1
vote
1answer
322 views

asp.net mvc authorization problem

I am trying to add authorization to my controllers and it's not working... I am not sure where to look in my program, but adding the [Authorize] filter in my controller is not working, let alone ...
1
vote
2answers
482 views

Why does registering a new user using the ACEGI plugin for GRAILS give a “Default Role not found.” error

Perhaps put a different way, how do I set up a default security role for newly registered users in Grails using teh ACEGI plug-in? I have followed the acegi/grails tutorial here and am using ...
1
vote
1answer
36 views

Do Per-Request (Custom) Roles exist for ASP.NET and ActiveDirectory?

My vision includes having globally defined roles which are pushed from AD but also I'd like to be able to add to Context.User.IsInRole("ATransientRoleForThisDocumentOnly") and have that work... I ...
1
vote
2answers
2k views

request.isUserInRole(“ADMIN”) also returns true for user not in role ADMIN but role USER

I'm currently trying out the JDBCRealm in Glasshfish v3: I have 2 roles USER and ADMIN. I have a LoginServlet that redirects to a url (say /admin or /user) based on the request.isUserInRole("ADMIN") ...
1
vote
3answers
96 views

How to design a system to filter requests on roles?

I have requirement to design a WCF Service based system to filter requests on roles in C# Rules User can access X SuperUser can access Y Admin can access Z Database Resource ...
1
vote
2answers
543 views

How do I list the requesting user's roles in a WCF service?

Just started getting to grips with WCF security. How do I list a user's roles at the service? E.g. // Could use declarative security here, i.e. using PrincipalPermission attribute public string ...
1
vote
1answer
273 views

DNN 5 - Role expired, but user can still view pages

I'm testing periodic fee subscriptions in DNN 5. I've set the renewal period on my custom role to 1 day. After 1 day, the subscription shows as EXPIRED, but the user can still view all the pages ...
1
vote
4answers
1k views

How do I access JAAS roles at arbitrary point in the code?

I want to access the full model of users with their roles in my SOAP app. For example, I might want to know the role of a user called "Fred." How do I reach into some sort of global JAAS registry ...
0
votes
2answers
37 views

AuthorizeAttribute with Roles but not hard-coding the Role values

Is it possible to add the Roles but not hard-coding the values like: [Authorize(Roles="members, admin")] I would like to retrieve these roles from a database or configuration file where I wouldn't ...
0
votes
0answers
15 views

Securing JAX-WS webservice by @RolesAllowed, security is not applied

I have troubles with webservice security settings. I do have global security switched on (WAS 8). I created j2c alias with the name 'customRole'. Error message (during maven build) : WSWS2041W: ...
0
votes
2answers
59 views

Custom CodeAccessSecurityAttribute That Takes Many Roles

I'm working on some Role-based security for our app and I essentially want to do customized verison MVC's AuthorizeAttribute - but only at the business logic layer, where we don't link to MVC. I've ...
0
votes
0answers
37 views

Vaadin appfoundation-addon authorization

I have read through all documentation and some forum posts I could find concerning the role based authorization methods that come with vaadin's appfoundation addon. But I still have problems getting ...
0
votes
1answer
116 views

Not able to get proper results using Apache Shiro configuration

I am trying to use apache shiro into my project as I have to create a role based mechanism into my project. I created a demo project with following configurations... I created following files into my ...
0
votes
0answers
53 views

Does the Roles Manager cache data for a custom roles provider, and can I clear this cache?

I'm using a custom role provider, which to over simplify gets a person object from the database using EF on .net 4 MVC project, and allocates user roles based on some rules around that (and other ...
0
votes
0answers
101 views

ASP.NET Sitemap, Roles and Url Rewriting?

I have the following sitemap in my ASP.NET WebForms application: <?xml version="1.0" encoding="utf-8" ?> <siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" > ...
0
votes
2answers
241 views

defining userroles with inheriting rights

I'm currently looking into the spring-security framework - great stuff so far, pretty impressed. However, I haven't found out where or how to define a inheritance of permissions. e.g. I want the ...
0
votes
1answer
109 views

LDAP authorization

I'm started integrate authorization and authentication module based on LDAP for available system. On the development stage I'm facing with difficult -"where role must be store". By means BDMS it ...
0
votes
0answers
46 views

create role asp.net

how to create user role without asp.net meemabership i haver 4 user role and database table user inside user table 4 role SuperAdmin , Admin1, Admin2, Admin3 when i login admin1 only add data when ...
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
0answers
246 views

@RolesAllowed annotation not working on Glassfish?

I want to secure some of my EJBs and ManagedBeans with @RolesAllowed annotations, so that only users with specific roles can access pages that use these beans. But when I decorate a bean like this: ...
0
votes
1answer
677 views

Spring Security Role Prefix and Custom User Details Service

How do I set the role prefix to "" with a custom user details service in Spring? <beans:bean id="authService" class="com.cisco.badges.business.services.AuthenticationService"/> ...
0
votes
1answer
211 views

how to show hide&hide buttons for specific user in asp.net mvc2

how can I show button for specific user and hide it for another one based on security role in ASP.NET MVC 2. For example if I have Create button in my view how to show it only for admin and hide it ...
0
votes
1answer
321 views

Handling Nested Group Permisions (ASP.NET Role Provider)

We have a security module which, based on group/role membership, controls permissions to resources in ASP.Net. I've built a custom ASP.Net Role Provider that queries Active Directory for group ...
0
votes
1answer
182 views

Filtering Repeater items based on user status/role

I have a tricky requirement where I need to categorise documents attached to a product, available for download, based on the status of the user viewing the product. I.e. my site displays a list of ...
0
votes
2answers
203 views

Why is there no built-in “stored procedure executor” database role?

I've always wondered why the list of database roles (db_datareader, db_datawriter, db_ddladmin, etc) never included a db_storedprocedureexecutor. The others make sense, but it seems like being able to ...
0
votes
1answer
44 views

Instance and roles of ASP.net MVC 2 + SS 2008 Developer

Gonna need some advice for my work. In my computer I have installed VS2010 and SQL Server 2008 Developer with a customized instance name named MYCOMPUTER. If I need to transfer the project work, that ...
0
votes
1answer
826 views

ASP.NET MVC 2 - Trying to configure role/user management via ASP.NET Configuration Tool

First, my development environment: Win7 laptop with Visual Studio Professional 2010. IIS is NOT installed. I'm trying to turn on and set up some roles for user management via the ASP.NET ...

1 2