Questions tagged [acl]

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

An access control list (ACL) specifies which users or system processes are granted access to objects, as well as what operations are allowed on given objects. Each entry in a typical ACL specifies a subject and an operation.

When a subject requests an operation on an object in an ACL-based security model the operating system first checks the ACL for an applicable entry to decide whether the requested operation is authorized. A key issue in the definition of any ACL-based security model is determining how access control lists are edited, namely which users and processes are granted ACL-modification access. ACL models may be applied to collections of objects as well as to individual entities within the system hierarchy.

Benefits of ACLs include:

  • easy to implement
  • easy to understand
  • extremely fine-grained: down to the user and the resource

Drawbacks of ACLs include:

  • too fine-grained and thus too hard to manage. The ACL management is on a per-object level
  • not context-aware: ACLs do not take time, location, or other attributes into consideration
  • doesn't scale: ACLs only work on a small set of objects and users.

Other access control models include and which aim to address the shortcomings of .

More information can be found on Wikipedia's definition of access control lists.

2775 questions
7
votes
3 answers

Posting image to S3 Conflicting query string parameters

I'm trying to post to s3, but get back an error of this: InvalidArgument Conflicting query string parameters: acl, policy acl
Brian
  • 111
  • 2
  • 3
7
votes
2 answers

How to use cp.exe from Cygwin and preserve permissions

I'm using cp.exe from Cygwin to copy files in Windows 7. Unfortunately, when I do the permissions of the file change. I've tried using: cp --preserve=all But that doesn't work either, and when I check the security of the original file vs the copy,…
mlissner
  • 17,359
  • 18
  • 106
  • 169
7
votes
4 answers

Can PowerShell trap errors in GetChildItem and continue looping?

I have a PowerShell script that is recursing down thru the file system using GetChildItem in a for-loop. As it travels, it is fixing ACL issues it finds (mostly where someone has blocked the BUILTIN\Administrators account)... but there are some it…
ewall
  • 27,179
  • 15
  • 70
  • 84
7
votes
3 answers

Network access denied at "SYS.DBMS_DEBUG_JDWP"

When trying to save a trigger I get this error Connecting to the database XE. Executing PL/SQL: CALL DBMS_DEBUG_JDWP.CONNECT_TCP( '192.168.56.1', '59537' ) ORA-24247: network access denied by access control list (ACL) ORA-06512: at…
Paul
  • 776
  • 1
  • 5
  • 18
7
votes
1 answer

setfacl in Dockerfile has no effect

I want to set the default acl for some folders when building a docker image using setfacl but it has no effect. The default acl is unchanged. My aim is that every file that is created in /opt must have rwX permissions for any user, as the image will…
GenError
  • 885
  • 9
  • 25
7
votes
2 answers

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 author: Normal author (can only see his own…
Hopstream
  • 6,391
  • 11
  • 50
  • 81
7
votes
1 answer

Loopback $owner doesn't works for findById

I would like to get some informations about my user with loopback. For that I created a "user" model related with "accessToken" model until now a POST on /user, a POST on /user/login and a POST on /user/logout is working. I added on…
Jonny
  • 71
  • 1
7
votes
0 answers

How do I create a permanent ACL in Centos using setfacl and Dockerfile

I am trying to set permission for one group to have access to a directory that contains constantly regenerated directories and files. The directory '/var/lib/mod_tile' is owned by the group 'mappers' and the user 'gis'. The permissions on the…
havak5
  • 714
  • 1
  • 6
  • 20
7
votes
1 answer

How to access a shared S3 bucket (shared through ACL) from the grantee's account

Under the "Access Control List" in the "Permissions" tab of my S3 Console, I have added another AWS account to the "access for other AWS accounts" list for a specific bucket. However, after updating the ACL settings, that account is unable to view…
jdmcpeek
  • 145
  • 2
  • 8
7
votes
1 answer

What is the standard Database TABLE design for an ACL?

I wish to build an ACL for an application, and I was wondering if there was a standard database schema design for this?
yazz.com
  • 57,320
  • 66
  • 234
  • 385
7
votes
2 answers

RunDeck / ACL / Custom / for non-admin group

Having trouble to get user that belongs to group "user" having access (at least read) to projects. I've read and tried several examples I found on the internet, none seems to work. What I need for now is: allow any users who belong to group "user"…
Cokorda Raka
  • 4,375
  • 6
  • 36
  • 54
7
votes
1 answer

CakePHP 2.x ACL - Control at owner level

I am able to control my application using ACL, everything done perfectly and application is working smooth with ACL and Auth. Now the problem is: I have two tables, users and posts. there is no RBAC (role based access control). I am setting deny and…
Nagesh Sanika
  • 1,090
  • 1
  • 8
  • 16
7
votes
5 answers

Freeswitch ACL configuration for remote event socket

I have a FS server running on one server and on a remote server I have a Node JS instance controlling it using node_esl (a Node JS Event Socket library for FS). Every time I'm sending a request to the server I have the following error: [WARNING]…
Stephane Paquet
  • 2,315
  • 27
  • 31
7
votes
3 answers

Access Control List to manage Database Column that are fetched

I have a site built in codeigniter for which I have designed an access control list to manage permissions of different types of users. Various users logged in to site are : Super Admin Admin SEO User Developer Now I have completed the Access…
Mohan
  • 4,677
  • 7
  • 42
  • 65
7
votes
2 answers

Authorization and ACL in cakephp 3

I search the document but I don't find anything about ACL implementation in cakephp 3. How can I implement authorization with ACL in cakephp 3?
anghazi ghermezi
  • 451
  • 1
  • 6
  • 19