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

0
votes
2answers
19 views

User not able to edit a Lotus form

A user is not able to edit a form. The user had editor access and i've tried to replicate the issue using a test user and providing the same access as the user, but to no avail. I came across a link ...
0
votes
1answer
12 views

ACL without server side logic

Would this be possible to have ACL for REST API implemented inside stored procedures in Mongo? Is this a good idea? Doing this way I could completely omit the need for application server - the ACL ...
1
vote
1answer
29 views

Symfony2 cache recreation - write permission fail

Here is the problem. Cache stores in app/cache folder. I'm currently work under dev environment and my cache stores in app/cache/dev folder. Problem appears when I use symfony console comand for ...
1
vote
0answers
23 views

Remotely Grant server\localuser access to a folder by using PowerShell

I have 100 servers where a local folder d:\backupmedia\ exists and every server has a local user as \backupuser , now I have to grant FullControl permission to this folder for this localuser using ...
0
votes
1answer
11 views

Changing NTFS security on user with fullcontrol to modify

I have thousands of folders I need to change users with Fullcontrol access to modify access. The following is a list of what I have: A script that changes NTFS perms: $acl = Get-Acl "G:\Folder" ...
0
votes
1answer
16 views

Need help in configuring LDAP acl

I am trying to configure acl in such a way users with attribute allowedService with application name can only login to that particular application. We have users as follows: dn: ...
0
votes
0answers
18 views

google storage bucket upload permissions

I have tried to create "vendor dropbox" , using the instructions in Google cloud storage documntation the folloing set of commands were executed : creating the bucket gsutil mb gs://customer-10 ...
0
votes
1answer
28 views

implementing Access Control Lists vs using database roles and users

First off before you grill me to the floor, i would like to say i have spent considerable amount of time reading and researching this topic. I have read some on stackoverflow itself such as ACL ...
0
votes
0answers
18 views

Access control and XHR requests

I'm struggling with access control implementation for custom framework. RBAC granularity is not needed so I decided to go with some kind of ACL where resources will be controller actions. Here is ...
0
votes
1answer
54 views

Opening document error noAccessSignal

I'm opening a document on xPageA then from there, (pushing a button) I open the same document in xPageB to do some stuff on it. Sometimes on some documents, opening xpageB from xPageA results in ...
0
votes
3answers
21 views

Batch script to enforce inheritence on 3rd level folders

This is kind of an interesting problem, so please bear with me here: I have three levels of nested folders used for syncing files to end-user devices - on the first level the administrator has ...
0
votes
0answers
7 views

CakePHP 2.x removing aco/acl

I have a "huge" (around 200 controllers with models) CakePHP 2.x project which has aco/acl active. Is there any "easy" way to get rid of it since i have now an own group-based permission system.
0
votes
1answer
22 views

Sidekick activation greyed out (CQ 5.4)

i'm Setting up a local CQ Author instance for dev/testing. After applying some Hotfixes the activation button within the sidekick is greyed out. Logged in as admin user, i can activate the page via ...
1
vote
3answers
70 views

Azure storage connection string without the account key - public containers

I am having a blob container which ACL is set up to allow full public read access so anyone can read and list the blobs in that container. I store the files so the WPF client app my clients use ...
0
votes
1answer
14 views

How to restore acl policies using importXML in apache jackrabbit?

I am developing an apache sling WCMS. I export a subtree of the repository contents to an xml file using session.exportSystemView(...) and it works perfectly. When I restore the xml file, using ...
0
votes
0answers
33 views

Sharing Google calender in domain [Google App Script]

I'm having trouble getting Oauth and ACL for the Google Calenders to work. I'm trying to create an app that will share a selected calender to all users in the same domain. The app itself works but I ...
0
votes
0answers
14 views

Configuring Mercurial ACLs under Windows/hgweb

I have Mercurial 2.3.1 set up under Windows/hgweb.cgi and serving up repos under IIS 7.0/https to authenticated network users. I'm trying to set up ACLs to limit pushes to certain files/dirs on the ...
0
votes
0answers
25 views

Optimized way to get the whole ACLs of a directory in c#

Is there an optimal way to get the whole ACLs entry of any files and directories in a directory in C# ? At the minute, I'm using this kind of code for the files and the sames for the directories : ...
-1
votes
3answers
96 views

Generating a list of permissions [duplicate]

I'm working on a custom framework strictly for fun and educational purposes. I've read over this question on how to implement permissions and I like the answers; either using a decorator pattern and / ...
0
votes
0answers
24 views

Retrieve a user object from memory provider

I need retrieve a user object from memory provider and grant owner access him by aclProvider and it is not current user. Config.yml: providers: in_memory: memory: ...
0
votes
0answers
33 views

Cakephp Ldap + mysql ACL

I am not too sure I might have overseen an answer to my problem. I am using CakePHP 2.x and am currently stuck with my Authentication. It's not a programming issue more like doing it the right way. I ...
0
votes
1answer
28 views

Magento - Can't Save Role Resource for Custom Module

I’ve created a custom module and my config.xml is as follows… <?xml version="1.0"?> <config> <admin> <routers> <blacklist> ...
0
votes
2answers
32 views

What goes into Spring Security's ACL_OBJECT_IDENTITY table?

I'm attempting to integrate Spring Security with ACL support into an existing GWT application, and if I click another unhelpful link I swear will need a new mouse and keyboard. I've worked through ...
1
vote
0answers
46 views

Sonata Admin User - ACL Setup

Trying to use the ACL mode for Sonata Admin. From the docs I understand that STAFF should have ["EDIT","LIST","CREATE"] permissions But when I install the ACL mappings: $ php app/console ...
1
vote
1answer
33 views

Make item “Private” in rails

App Attributes: Rails 3.2, Mongoid, Devise, Elasticsearch Basic Structure: User has a Post Post can be seen by other users Situation: A User wants to remove the post from being view-able by ...
0
votes
1answer
33 views

Reading a private authenticated image from Amazon S3 with Imagick PHP

I am fairly new to both Amazon S3 and the Imagick PHP library, but so far have been able to accomplish what I want with it (ie: uploading files and generating a range of thumbnail images). Currently, ...
0
votes
0answers
24 views

Enabling back permissions inheritance on a file and accessing it after removing some permissions

I'm developing a little application that, when the user clicks the button, can programmatically enable or disable usb ports. To achieve that, I need to access registry and set proper file ...
0
votes
1answer
40 views

CakePHP access restricted files after authentication

I have an ACL controlled application that uses the Media plugin to upload files to /app/webroot/media. When a file is uploaded, the dirname, basename and file name are written to the database. I'm ...
0
votes
1answer
24 views

django storages with boto using pirvate ACL throws 404 on save

I am using django-storages with boto. Everything works fine if I let storages handle S3 file uploads in my model as public. However when I set the ACL to private on save/update I get this error ...
0
votes
1answer
63 views

Spring Security ACL - create permission

I can use Spring Security ACL with permissions on entity but I'd like to know how to test if a user has access to the "create" (bit 2) permission on a class. Something like : ...
0
votes
0answers
49 views

Yii ACL for User Management

I am looking at this ACL extension for a Yii project. I am new to ACL, and want to control access to the User model's functions, like logging in, user create, and changing passwords. Yii ACL ...
0
votes
0answers
14 views

ACL cakePHP error

I don't know why I keep on getting that error: AclNode::node() - Couldn't find Aro node identified by "Array ( [Aro0.model] => User [Aro0.foreign_key] => 1 ) " Error: An Internal Error Has Occurred. ...
0
votes
1answer
47 views

ACL cakePHP error

AclNode::node() - Couldn't find Aro node identified by "Array ( [Aro0.model] => User [Aro0.foreign_key] => 1 ) " Error: An Internal Error Has Occurred. Stack Trace My model name is Admin not ...
0
votes
0answers
52 views

single command to reset ACLs and set owner

I'm trying to reset all file permissions and ACLs on a windows NTFS share. The following command should do that icacls "D:\mydata" /T /Q /C /RESET but I keep getting Access is denied errors for ...
0
votes
0answers
39 views

Sonata admin and Custom Security handler

I wanna write a custom Security handler and this will be a simple ACL which restrict data by user id. I don't want use a standart ACL, no need to use all functional and create aditional database with ...
1
vote
1answer
48 views

Symfony2: creating a new SecurityIdentity

I'm using ACL in Symfony 2.1, and I need to create a new SecurityIdentity, so that my ACL can be set in function of some sort of groups. Picture the following situation: there are groups with users ...
0
votes
1answer
30 views

CakePHP adding tables to ACL controlled application

Sorry if this is a noob question, I'm using the Simple ACL Controlled Application tutorial as a boilerplate and need to add (bake) a few more tables. If I create a new table then run "cake bake all" ...
0
votes
1answer
34 views

OpenLDAP ACL order

I have 3 ACL's in slapd.conf file. 1. access to attrs=userPassword filter="(&(objectClass=customAttributes)(!(statusCode=A)))" by * none 2. access to attrs=userPassword ...
0
votes
1answer
55 views

Zend Navigation Find Page and Render Menu with its Subpages

I am putting together a Zend Navigation for a site with 4 different levels of access: Guest, Member1, Member2, and Admin. My navigation XML looks something like this: <?xml version="1.0" ...
-1
votes
1answer
53 views

Vbscript for listing explicit rights

I've found a vbscript at possibly defunct scripting blog that I would like to use on our Windows 7 system. When I attempt to use it, I get an Invalid Object Path from line 38: Set objSecuritySettings ...
0
votes
1answer
45 views

Where can I find the exact semantics of Windows ACLs

Is there any place where I can find out an exact description of the Windows access control semantics, similar in detail to the acl(5) man page on Linux. i.e. an algorithm that explains exactly how ...
0
votes
2answers
40 views

Joomla 2.5: assign user to usergroup from front-end

I have statically defined user groups with statically defined access rights. And I want to be able to change the user group for given user from the front-end using some module. Reason: users can ...
0
votes
1answer
52 views

ACL Permissions - Determine between Security Group and User

Ok, our office has a rule that individual users can't be added to folders, but, well, over the years with such a big organization it has happened all over the network. I am playing with powershell ...
1
vote
0answers
68 views

Merits and demerits of using java.security.acl in a Java EE project

I'm going to implement Access Control List using java.security.acl for displaying permitted items in a user account page. For instance, there are some users and user groups and the users as well as ...
0
votes
0answers
54 views

Symfony 2 - Sonata Admin Role based security

With Sonata, I'm trying to use the role based security. I want to give a group, rights for listing, editing & creating users, so I created a role with ROLE_MANAGE_USERS: - ...
0
votes
1answer
31 views

Cake ACLs with Groups and Users added to Projects

I'm currently working on a platform which is planned to coordinate the communication with customers in future. Users can be added to projects and have certain rights. Therefore users are assigned to ...
0
votes
0answers
59 views

CakePHP: How to create an ACO manually?

I´m struggling very hard with ACL Component of CakePHP. I set up everything, the DB Scheme and have some Users. My App Controller starts with: public $components = array( 'Acl', 'Session', ...
0
votes
1answer
72 views

Zend Navigation privileges without Zend ACL's

Ok, I have a code that generates a xml file like the following: <?xml version="1.0" encoding="UTF-8"?> <configdata> <nav> <main> ...
1
vote
1answer
94 views

Grails Spring Security ACL domain object method secured

My question is : Is that possible to secure a domain object method and even dynamic methods like findByName? It works very well on service methods but I can't make it work on a domain instance method ...
0
votes
1answer
31 views

How do I give read access to all Schema permalinks to “wso2.anonymous.role”?

Is it possible via the WSO2 Governance Registry Management Console to allow read access to all Schema permalinks for the role "wso2.anonymous.role" automatically? Do you have to program that as a ...

1 2 3 4 5 20