Tagged Questions
1
vote
1answer
29 views
ZF2 ACL -> allow for all actions in controller
I would like to add ACL to my zf2 application, but I've a problem with adding permissions for all actions in the controller.
I can do this:
$acl->allow('roleName','zfModule', ...
1
vote
1answer
35 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
44 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
0answers
27 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 ...
-1
votes
1answer
56 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
50 views
No Response for WaitForMultipleObjects() function in Windows 7
In VC++, I'm trying to call WaitForMultipleObjects() function on windows 7 platform for group of objects to get signaled and with no timeout. I figured out that this function call is not ...
0
votes
0answers
35 views
Deploying a WPF application to multiple desktops in the enterprise
I am in the process of deploying a .NET applications across multiple desktops in the enterprise. Not everyone has administrative access and the application does not do anything special requiring the ...
0
votes
1answer
92 views
restricting aro scope in cakephp
Ok, I'll preface this by saying i'm a noob to cake and ACL, and MVC architecture. I'm following a cakephp tutorial from its site, ...
1
vote
0answers
105 views
Apache Shiro per object permission?
Is it possible to implement a per database row permission system with Shiro? Suppose I have 10000 records in a table and some user can only see 1000 records... what is the best way to only return ...
1
vote
1answer
66 views
Verifying permissions on S3 object in Ruby
I'm using aws-sdk for Ruby to manage objects on S3. I'm able grant public read permissions by setting
object.acl = :public_read
Is there a way to determine if there is already public read ...
2
votes
1answer
164 views
Recursive scan for ACLs on directories with C++
I was curious about something. I'm writing a piece of code with C++ that needs to scan ACL permissions on subfolders of a specific folder and find those that differ from the ACL permissions of the ...
1
vote
0answers
98 views
Web Deploy setAcl Failure
Going on three days of troubleshooting - I am officially stumped.
Error Details from TFS Build Log
MSDeployPublish:
Start Web Deploy Publish the Application/package to ...
0
votes
1answer
157 views
How to get ACL permissions for a folder for a specific user with C++?
First off, let me ask, do ACL permissions change on per-user basis on Windows-NT? The reason I'm asking is because the accesschk utility seems to take user name as a parameter, while also requiring an ...
1
vote
0answers
77 views
Symfony2: How to check permissions for different users/roles on an domain object?
I want to show a table with permission flags. It means who is allowed to do something.
In my Application I set all permissions in ACEs with UserSecurityIdentity/RoleSecurityIdentity and a valid mask. ...
0
votes
2answers
310 views
Capifony setfacl permissions: “Operation not permitted”
I have a user didongo (user & group didongo), and the nginx server (user & group www-data). I've setup Capifony to login as didongo user: the first time I deploy setfacl command works ok ...
0
votes
1answer
50 views
Changing Folder permissions with C# doesn't seem to be working
I'm really out of my comfort zone when it comes to permisions. But I want to create a folder and give all users Full Control over it.
DirectoryInfo NewDir = Directory.CreateDirectory(@"C:\Test");
...
0
votes
1answer
101 views
Getting and Error when changing an ACL via Powershell
I am working on a small script which mdifies the ACL on a folderby adding extra permissions; I adm getting the error while I execute "Set-ACL" command; please do let me know what I am doing wrong.
...
0
votes
2answers
2k views
How to set permission on folder using powershell
i am trying to write a script which adds"CreatorOwner" permission to profile$ folders on all file servers;
i.e , add "CreatorOwner" permissions to "\FileServer\Profile$"
can anybody tell me whats ...
0
votes
0answers
131 views
Joomla article access level behaviour
I have the following problem. I have multiple access levels set in my Joomla site. I have created a category and I have set the access level to my new access level called "administrate", that includes ...
0
votes
2answers
77 views
ACL: How to check, or uncheck options
I add group in ACL for my folder, but I can't check/unchek options for it.
String account = @"HYPROSTROY\Все сотрудники";
FileSystemRights rights = FileSystemRights.FullControl;
// I have tried and ...
0
votes
0answers
96 views
get effective permissions for an object from active directory?
I am trying to retrieve effective permission for an object from active directory using C#?
I am able to access its ACL but I want to compute effective permission of object.
I was wondering if any ...
0
votes
1answer
35 views
ACL on the directory itself
I have a directory
..../test
With the follow ACL permissions.
$ getfacl test
# file: test
# owner: root
# group: root
user::rwx
user:usl:rwx
group::r-x
mask::rwx
other::---
default:user::rwx
...
0
votes
0answers
203 views
linux/setfacl - Set all current/future files/directories in parent directory to 775 with specified owner/group [closed]
I have a directory called "members" and under it there are folders/files. How can I recursively set all the current folders/files and any future ones created there to by default have 775 permissions ...
0
votes
0answers
100 views
OpenCMIS returning two types of ACL permission values
I am getting the following permission values when getting iterating through all the Aces on an ACL for Alfresco. What should i do with values as follows:
For PrincipalId: GROUP_EVERYONE
...
0
votes
0answers
136 views
CakePHP Creating a switch menu for ACL/group level
I am working out some things on a site that uses ACL and was originally coded in CakePHP. The site has four AROs that correspond with another table called groups (Let's say: Admin, Moderator, User, ...
0
votes
1answer
86 views
TYPO3 - BE ACL - Single record permissions?
I would like to give to BE user a permission to view/edit only one record of some type.
For example, I have lots of tt_address, and I would like to give a permission to some client to view/edit only ...
1
vote
0answers
61 views
OSX: Hiding Cocoa app's temp files from a Posix/shell program: “reverse” sandboxing?
So here is the problem: my app (sandboxed or not, doesn't seem to matter) creates some temp files in NSTemporaryDirectory().
These files are then passed to some Cocoa/Quartz APIs for rendering and ...
1
vote
0answers
52 views
What kind of permission is this? (Groups+Roles)
I'm starting to need an access control for roles in my app.
I don't know much of this, but I understand how vBulletin works:
I create groups, then give permissions to groups.
I think that what I ...
1
vote
1answer
171 views
Checking CakePHP ACL permissions by URL
I'm using the CakePHP ACL CRUD system in my webapplications and i'm trying to generate some menu's based on the permissions for the user currently logged in.
I'm facing a problem which is not ...
3
votes
0answers
400 views
Symfony2 ACL access to multiple objects for multiple users
I'm busy with a Symfony2 application that needs some ACL permissions.
I'm a newbie with Symfony2, so not sure if i'm looking at this the right way.
I have multiple clients, each with multiple ...
0
votes
1answer
82 views
how to set multiple ACEs of a same trustee in an ACL of an object
I am trying to set two Entries to an object folder of a same group, with difference inheritance, (one NO_INHERITANCE for FILE_TRAVERSE, the other as SUB_CONTAINERS_AND_OBJECTS_INHERIT, for ...
0
votes
1answer
298 views
Granular access control for MediaWiki with LDAP
My company has a MediaWiki setup which we are looking to make [partially] client accessible. Ideally each client would be able to see only their own page. Our wiki requires the user to be logged into ...
2
votes
1answer
426 views
Joomla 2.5 set default ACL permission values
I have developed a component and added ACL for viewing permissions in it and everything works great, the only issue is that when I install the component by default it uses 'inherited' permissions for ...
0
votes
0answers
22 views
owner of the main folder can create but not delete on Mac OS X server
Configure as owner of the main folder can create but not delete?How to set up folder permission,main folder not delete but subfolder can deleted?
1
vote
0answers
64 views
Network service account not inherited in ACL
I have a problem with files that are being moved into a folder that is set to replace permissions on child objects for the Network Service account. The process is that a media file is uploaded to a ...
0
votes
0answers
89 views
Spring Security: How to do facebook like permissions? [closed]
For my application, I need the following "facebook like" features:
Allow a user to create and manage groups
Add users in groups
User can create personal content (photo, sound)
User can share a ...
0
votes
2answers
234 views
TFS: Is it possible to remove item permissions objects from version control?
When using the TFS object model, item-level ACLs can be set with the VersionControlServer.SetPermissions method. This method takes an array of SecurityChange objects, which PermissionChange inherits. ...
3
votes
0answers
288 views
How to make a permission system like the following with Symfony 2?
General description
The system should handle a lot of items organized into nested categories (see visual example below) while giving the clients the ability to define the permission rules (see ...
1
vote
1answer
639 views
setting default permissions for new files - CentOS 6.0
I am trying to set some default inherited permissions to a directory that will be propagated to all new files and folders that it will contain.
My attempts so far have been using setfacl but it ...
0
votes
1answer
262 views
cakephp ACL check if user has permission to execute action in current controller
what's the syntax to check if the user has permission to execute a certain controller action in the current controller using the ACL component of cakePHP?
Thank you
1
vote
1answer
294 views
weird cakePHP isAuthorized() issue
I'm using cakePHP's isAuthorized() function to check if a user is authorized to execute a controller action, but the weird problem I'm having is that the permissions on my other controller actions are ...
3
votes
1answer
717 views
Grails ACL with Custom Permissions
Spring Security ACL plugin for grails by default uses the BasePermission class with 4 basic permissions. And uses DefaultFactory to assign this permissions. And AclPermissionEvaluator where this ...
3
votes
1answer
372 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 ...
1
vote
0answers
173 views
Unix: Changing the mask of an extended ACL
I am writing a script which touches a file and afterwards modifies the access control list the way that one particular user (say peter) shall have full permissions to that file. Therefore I must add ...
0
votes
1answer
133 views
TYPO3 BE custom permissions
I would like to implement custom permissions verification for TYPO3 BE ("List", "Page", "Page TemplaVoila") and Front-End editing, to provide access control on tt_content and tt_news editing by custom ...
2
votes
2answers
1k views
How to use cp.exe from Cygwin and preserve permissions [closed]
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 ...
0
votes
3answers
61 views
Unix advanced file permissions on web server
I've got 3 folders that contain PHP scripts:
- core
- custom_modules_1 (cm1)
- custom_modules_2 (cm2)
The core is executed by Apache and includes (require_once) files from either cm1 or cm2. It ...
0
votes
1answer
265 views
Read/Write versus Create/Read/Update/Delete permissions difference
From a practical standpoint, is there any real-world difference between Read/Write permissions and Create/Read/Update/Delete permissions?
It would seem that if a user had the ability to 'create', he ...
0
votes
1answer
374 views
PHP/CakePHP : Update ACOS table?
I have created a controllers called user_controller in my cakephp app. After I've run the command : cake acl create aco root controllers for filling the ACOs table with my controller.
But now I've ...