An access control list (ACL), with respect to a computer file system, is a list of permissions attached to an object.

learn more… | top users | synonyms

16
votes
4answers
379 views

building a 'two-way' OO dynamic ACL system

This question came up while designing a dedicated ACL system for a custom application, but I think it applies to ACL systems in general, as I haven't found out how to tackle this problem by looking at ...
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 ...
12
votes
1answer
432 views

Symfony2: How to find the users that have permissions for a certain domain object?

In our application based on Symfony2 we would like to create a list of which of the users in the system that has permissions for a given domain object. We are using ACL and our immediate instinct was ...
12
votes
2answers
11k views

Help with Zend ACL

I am currently working on a site that requires use of ACL and seen as I am using Zend it makes sense for my make use of there ACL class but I have little to zero idea of how to do this, I have read ...
12
votes
2answers
7k views

Recommend a PHP ACL class?

In reference to my other question, I'm looking for a good php-based ACL class that I can integrate into ExpressionEngine to get better support for member access control. So far I'm looking at the ...
11
votes
2answers
376 views

What is the best way pre filter user access for sqlalchemy queries?

I have been looking at the sqlalchemy recipes on their wiki, but don't know which one is best to implement what I am trying to do. Every row on in my tables have an user_id associated with it. Right ...
8
votes
1answer
461 views

Symfony2: how to get all entities of one type which are marked with “EDIT” ACL permission?

The title already says it: can someone tell me how to get all entities of one type which are marked with "EDIT" ACL permission? I would like to build a query with the Doctrine EntityManager.
8
votes
3answers
855 views

Database schema for ACL

I want to create a schema for a ACL; however, I'm torn between a couple of ways of implementing it. I am pretty sure I don't want to deal with cascading permissions as that leads to a lot of ...
8
votes
2answers
1k views

Role-based access to pages in PHP

I'm looking for a solution in PHP that will allow three types of users to pages that are relevant to them. Not everyone will access all the pages. What do I need - a role-based access control or ACL? ...
7
votes
1answer
854 views

ACL implementation

First question Please, could you explain me how simpliest ACL could be implemented in MVC. Here is the first approach of using Acl in Controller... <?php class MyController extends Controller { ...
6
votes
1answer
484 views

Symfony2 ACL and pager/multiple entities filtering

I've seen examples of ACL to deal with one entity but none to deal with fetching multiple items - such as a list of posts that belong to an author. One (bad) suggestion was to fetch all the items and ...
6
votes
3answers
720 views

How do one use ACL to filter a list of domain-objects according to a certain user's permissions (e.g. EDIT)?

When using the ACL implementation in Symfony2 in a web application, we have come across a use case where the suggested way of using the ACLs (checking a users permissions on a single domain object) ...
6
votes
1answer
199 views

How to check wheter POSIX ACL is enabled for a given path

After reading the man page of getfacl / setfacl I could not find an obvious/robust/elegant method to check whether acl is enabled for a given path in (ba)sh. Any suggestions?
6
votes
2answers
184 views

Implementing ACL constraints, more than allow/deny

I've developed a small yet effective MVC-style framework for use in an application, and I'm implementing an ACL per-request check. Quick details: PHP 5.3+; MySQL 5.1+; Custom framework, "MVC-like" ...
6
votes
3answers
1k views

How to make images hosted on Amazon S3 less public but not completely private?

I fired up a sample application that uses Amazon S3 for image hosting. I managed to coax it into working. The application is hosted at github.com. The application lets you create users with a profile ...
6
votes
7answers
2k views

Django role based views?

I'm looking for some input on how others would architect this. I'm going to provide class (django group) based views. For example, a user's group will determine what views/templates he or she will ...
6
votes
5answers
2k views

In linux, is there a way to set a default permission for newly created files and directories under a directory?

I have a bunch of long-running scripts and applications that are storing output results in a directory shared amongst a few users. I would like a way to make sure that every file and directory created ...
5
votes
2answers
2k views

Zend Framework: need typical example of ACL

Can some one guide me for typical implementation example of ACL. Like 'admin' can access 'admin' module, 'user' can access 'user module', and guest can access 'open' pages.
5
votes
1answer
259 views

How do I inject access control into a service layer of mvc application?

I'm coding a zend framework application using the the standard mvc paradigm with an added service layer to take care of application/business logic. It seems quite popular to put your access control ...
5
votes
1answer
767 views

AuthComponent: Difference between allowedActions and allow()?

What is the difference between using AuthComponent::allowedActions and AuthComponent::allow? When I Google, I see the majority of examples and documents using or talking about allow(), but only a few ...
5
votes
1answer
292 views

Where to manage ACL inheritance?

Where should I best manage a hierarchy of ACLs? I see three possibilities to manage a hierarchy of ACLs: 1) The ACLs themselves manage the hierarchy: class Acl { Acl parent; // ... } 2) ...
5
votes
3answers
5k views

What's the best way to implement ACLs to a Rails application?

I just wanted to compare different solutions used when implementing ACLs in Rails.
4
votes
1answer
84 views

Implementing Zend_Acl in a modular structured application with identical controller names

I'm pretty new to Zend Framework. I started learning it during a project I'm still working on for school. I'm a bit stuck on how to tackle an ACL coupled with my modular structure (which I really ...
4
votes
2answers
98 views

How to combine Hibernate Seach (Lucene) with Paging and ACLs

I am using Spring Security with ACLs to secure the documents in my application. On the other hand I use Hibernate Search (on top of lucene) to search for the documents. This search also support ...
4
votes
2answers
124 views

setting different access for different module

I want set different access for different modules. I tried out $this->allow($role, $module, $controller, $action); or $this->allow($role, $module . ':' . $controller, $action); But this ...
4
votes
3answers
1k views

Is there any good opensource ACL framework or library?(java)

Here's my situation. I use RBAC model to control function-level ACL, and use hard-code (if/else in my business code of DAO/Service layer) for fine-grained ACL. But, my customer can't figure out ...
4
votes
1answer
448 views

Building a generic OO ACL using Doctrine

I'm looking to design a doctrine-backed ACL system for my own use, although I'm struggling with some of the initial design considerations. Right now I'm looking at making it based on classes and ...
4
votes
1answer
352 views

Any good examples/references implementing ACLs via SQL?

I currently have a web-application that implements a rudimentary form of ACL using UNIONs in mysql, but it's somewhat limited, and doesn't necessarily scale that well I'm interested in any ...
4
votes
8answers
6k views

User management, authentication and acl plugin for CakePHP?

I am pretty new to CakePHP, having been using rails for a little while. My question is, can anyone recommend a good user management, authentication and acl plugin or component for Cake? I have come ...
4
votes
1answer
3k views

C# - Windows ACL - Applying Inherited Permissions

I've been having problems programatically assigning permissions to Folders / Registry entries. I have managed to assign inheriting permissions using the following code: FileSystemAccessRule rule = ...
4
votes
1answer
919 views

ACL Check/Management in C#

I am wondering if there is a way to check a users permissions against an ACL in c#. I am building a large system that is going to use active directory for authentication and I would like to use as ...
4
votes
2answers
751 views

How should I structure my tree of resources in an ACL?

Using PHP and Zend_ACL, I want to create an extremely flexible permissions system. I want to be able to assign permissions to all objects of a certain type, as well as to instances of those objects. ...
4
votes
4answers
2k views

A reliable way to determine if ntfs permissions were inherited

I have a somewhat obscure question here. What I need: To determine if the permissions (or, strictly speaking, a specific ACE of a DACL) of a file/folder was inherited. How I tried to solve this: ...
4
votes
5answers
770 views

User authentication

If I am to follow What should a developer know before building a public web site? on authentication, then what options do I have ? I have never used PEAR, and I'm not about to start. I have read ...
4
votes
3answers
3k views

Rails User Access Plugins

There are a lot of rails plugins out there that handle user permissions. I'm impressed with the implementation in the hobo gem, but I'm not sure if I can use just this feature and not the other ...
3
votes
1answer
38 views

Cakephp ACL ARO_ACO

I've been working on a CRM for about 5 months and we are about to launch it, I am having an exhausting problem with Cake's ACL. I understand the concepts to a degree. The problem I'm having is with ...
3
votes
6answers
88 views

How to prevent access to local file system

I have a situation in which my (C#) application can load external DLLs (not written by me) and execute code from those libraries. The libraries can be C# or CPP. I need to make sure this external ...
3
votes
1answer
63 views

What's a good PHP permission framework that allows listing resources?

I'm building a new application and I need a permission framework to go along with it. Here's a quick example of one of the things we need it to support: With the data model: user ---- id role type ...
3
votes
2answers
47 views

How can I serialize System.Security.AccessControl.FileSecurity?

I am working on small scale deployment system for our in-house software that manages backups of several kinds of data. Part of the task is to backup certain folders, and I would like to backup the ...
3
votes
0answers
168 views

How to use class-scope aces in Symfony2?

I've got a problem with class-scope aces. I've created an ace for a class like this : $userIdentity = UserSecurityIdentity::fromAccount($user); $classIdentity = new ObjectIdentity('some_identifier', ...
3
votes
2answers
159 views

License Based Configuration in C# Windows Application

I am working on a Windows application in C# (.NET 4.0) and need something to implement some basic ACL rules or more specifically, apply certain configurations based on the user type. The application ...
3
votes
4answers
134 views

C# Linq for files user has read access to

How would I use Linq on list.Items = directoryInfo.GetFiles("\\server\share\folder\"); to include only the files the user has read access to? ... So far only suggestions are using try/catches, or ...
3
votes
1answer
111 views

How to deal with user permissions when dealing with admin system users and front-end website users?

Can anyone recommend a source of information or working example showing how to deal with access permissions when dealing simultaneously with admin system users and website users? Our code at the ...
3
votes
1answer
270 views

spring-security how ACL grants permissions

I'm currently integrating springs-security into our new web application stack. We will need to be able to grant permissions for a user or role to access a specific object or all objects of a certain ...
3
votes
3answers
156 views

Zend Framework: Can you do ACL without the plugins directory?

I am having trouble understanding the rules to ACL in ZF and the docs aren't clear. I am using a common Zend library for all websites. So far no problem but now every demo or example says that you ...
3
votes
1answer
111 views

How can best deal with this complicated ACL situation using CakePHP?

I'm making a small application to handle project related information and I'm having troubles with ACL. How do I best deal with the following situation? My app has the following tables: users: Keeps ...
3
votes
1answer
133 views

What API can be used to change windows account information remotely?

What API is available to change windows account passwords remotely? Assuming I have the proper credentials to change the windows accounts, I need to write software that can do so remotely. The ...
3
votes
1answer
154 views

Mercurial ACL, possible to grant a group permission to one branch but deny everything else?

Basically [acl.groups] group1=user1,user2 group2=user3,user4 [acl.allow.branch] default=* [acl.deny.branch] *=@group2 Since Mercurial looks at deny first, it ignores acl.allow...our repo has many ...
3
votes
4answers
2k views

CodeIgniter — Best implementation for ACL

What's the best way to implement ACL in CodeIgniter? DB based roles, groups, user persmissions? Create a library? Here is what we're working with: Articles, Authors There are two types of ...
3
votes
2answers
544 views

C# - How do I get the “Everybody” user?

I already wrote a code which can create a share and change permissions for the current user. The goal was to always allow all for everybody on share level and deny rights on ntfs acl level. I use a ...

1 2 3 4 5 10