Tagged Questions
Access control is the process of limiting the access of ability of users or services to certain resources.
13
votes
8answers
11k views
Best Role-Based Access Control (RBAC) database model
What is the best database schema to track role-based access controls for a web application?
I am using Rails, but the RBAC plugin linked by Google looks unmaintained (only 300 commits to SVN; latest ...
12
votes
8answers
11k views
Role Based Access Control
Are there any open source, PHP based, role based access control system that can be used for CodeIgniter?
10
votes
1answer
469 views
Is this key-oriented access-protection pattern a known idiom?
Matthieu M. brought up a pattern for access-protection in this answer that i'd seen before, but never conciously considered a pattern:
class SomeKey {
friend class Foo;
SomeKey() {}
// ...
8
votes
4answers
202 views
How to use PHP script for access control in Apache
I am looking for a way to use a PHP script to control access to resources in Apache. I want to have access control that does not depend on the target resource; i.e. it will work for html, files, other ...
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? ...
8
votes
7answers
6k views
Browser application & local file system access
I want to enhance my browser-based web application with functionality that enables management of local files and folders. E.g. folder tree structures should be synchronized between local workstation ...
7
votes
1answer
3k views
How to add an Access-Control-Allow-Origin header
I am designing a website (e.g. mywebsite.com) and this site loads font-face fonts from another site (say anothersite.com). I was having problems with the font face font loading in Firefox and I read ...
7
votes
5answers
531 views
Building a download area with users and groups taken from an external database
I'm searching for a free and open source document/content management system (web-based) to implement a download area, where some people can upload files, someother can download them, depending on ...
7
votes
5answers
300 views
Keeping a troll out - IP bans considered harmful? What to use instead?
I run the technical side of a discussion forum, which is plagued by a troll (a single physical person, as far as I can tell). It seems that the community has exhausted all means of communication (it ...
6
votes
4answers
190 views
Control access to files based on DB values with PHP/Apache
What i want
I'm making a system where, when a user uploads an image it goes to the folder images, where there is two copies of the image, a thumb and a bigger one.
Now, when a user uploads an image ...
6
votes
2answers
307 views
Granular Database Record Access Rights (e.g. Group “X” & Individual “Smith” can view Record Z)
I have records (Contacts, Addresses etc.) which should be accessible to any of the following (incl. combinations, e.g. 2 groups and 4 individuals):
Everybody
Members of multiple Groups/Departments
...
5
votes
2answers
199 views
How to integrate access control with my ORM in a .net windows form application?
I am developing a general database query tools, a .Net 3.5 Windows Form application. In order to make the presentation layer is independent of the database layer. I use an ORM framework, XPO from ...
5
votes
2answers
887 views
Document-Based Security in ASP.NET MVC
I already know about User and Role-based security in ASP.NET MVC. But now I need something a little more granular.
Let's say I have a list of documents, some of which the user is authorized for, ...
4
votes
1answer
38 views
How to represent RESTful attribute level access control?
I've been wracking my brain and googling away for ages without coming up with a satisfactory way of handling this. I want to write a nice fully RESTful service to return resources, but the data you ...
4
votes
3answers
188 views
The party model, permissions, customers and staff
We are using a party model for a booking application, so that customers and staff effectively share the same table in the database.
Previously customers could only 'book' an appointment if they paid ...
4
votes
3answers
254 views
Why are private fields on an enum type visible to the containing class?
public class Parent {
public enum ChildType {
FIRST_CHILD("I am the first."),
SECOND_CHILD("I am the second.");
private String myChildStatement;
...
4
votes
6answers
308 views
How to secure proprietary software in an enterprise environment?
We need to secure a proprietary software that is built in .NET for Windows PCs, to limit usage only within the enterprise, and ensure that employees cannot steal or copy out the program even though ...
4
votes
2answers
693 views
Multi-tenant Access Control: Repository or Service layer?
In a multi-tenant ASP.NET MVC application based on Rob Conery's MVC Storefront, should I be filtering the tenant's data in the repository or the service layer?
1. Filter tenant's data in the ...
4
votes
2answers
431 views
Mercurial: Acl Extension Sample Of Preventing Web Access
I can see how you can use the Acl Extension to control the push/pull to a particular repository by certian users, but can you control "WEB" access to a repository using the Acl Extenstion? I would ...
4
votes
3answers
1k views
c++ using declaration, scope and access control
Typically the 'using' declaration is used to bring into scope some member functions of base classes that would otherwise be hidden. From that point of view it is only a mechanism for making accessible ...
4
votes
5answers
841 views
How to setup a git repository where different users can only see certain parts?
How do you setup a git repository where some users can see certain parts of the source code and other users can see all of it? I've seen lots of guides for only giving certain users commit access, but ...
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 ...
4
votes
1answer
816 views
Security and Access control in a MVC application
I have only recently started working with the MVC approach, so I suppose this is an easy one for you gurus here:
Where do I put access control?
In a view? I don't want to have any logic besides ...
4
votes
4answers
477 views
How can I do access control via an SQL table?
I'm trying to create an access control system.
Here's a stripped down example of what the table I'm trying to control access to looks like:
things table:
id group_id name
1 1 thing ...
3
votes
3answers
82 views
Preserving File Permissions in .NET
I have a file that is often deleted and recreated (I have no control over this behavior). However when the file is recreated, it doesn't retain the permissions that it had before it was deleted. So I ...
3
votes
3answers
96 views
Allow C++ class to access some “internal” member of other class, but not private?
When coding classes that are tightly coupled functionally, but where you want a simple interface to the rest of the world, it would be neat if I could do something like this:
class log
{
private:
...
3
votes
1answer
177 views
CakePHP - restricting editing to your own “data”
At the moment I use Auth Component for users to login / logout - ACL is defined to sort between user groups (Guests, Users, Admins) - with obvious restrictions; Admin being able to access everything, ...
3
votes
4answers
734 views
JAX-WS, Authentication and Authorization - How to?
What is the best way to do authentication and authorization in web services?
I am developing a set of web services, requiring role based access control.
Using metro - SOAP, simple java without EJBs.
...
3
votes
3answers
181 views
Git hook to disallow directory creation in top level
Any better way to prevent stop top level directory creation by users may be while on push or direct file creation
Thanks in Advance
Dhandu
3
votes
5answers
161 views
How can I prevent windows from showing in .NET?
I'm currently working on an access control program in C# and I've come across the problem of blocking windows. The original idea I've come up with is rendering a plain black form over the position ...
3
votes
4answers
788 views
java - protected members accessed in derived class using base class instance
I must admit that I have been a manual tester and have just begun swimming through java (for selenium tool) I got to know that protected members of a class would be accessible in derived class.
...
3
votes
4answers
699 views
Prevent Access to a directory using C#
I am trying to create a program similar to Folder Lock which prevents users from accessing a particular folder. I tried using DirectorySecurity class and AccessRules to change the AccessControl for ...
3
votes
2answers
799 views
Access control - is RBAC worth implementing in a hierarchical user management system?
Lately I've been considering the best access control model to use in my application. I've been reading on RBAC and the role concept is nice (especially if you have a huge amount of different ...
3
votes
2answers
1k views
How To Query for Specific User Access Rights
I have an old database that I am inheriting. The access rights are not clearly defined anywhere and I'm looking for a quick way to get them for everyone. Let's say I have a user in my database that ...
3
votes
4answers
2k views
C#: How to check if I can read and/or delete a directory
I loop through a bunch of directories recursively. Some of them (like D:\$RECYCLE.BIN\S-1-5-20) give me a System.UnauthorizedAccessException. I suppose that I can just catch it and move on, but I ...
3
votes
3answers
455 views
Fine-grained access control problem - any ideas?
it's my first post, so be gentle!
I'm familiar with a whole bunch of ways to authenticate users for the web-based administration application we're developing, and even various techniques to keep tabs ...
3
votes
3answers
7k views
Blackberry permissions — what does “trusted application status” refer to?
For some device users, on startup they are presented with the following permissions dialog
"Would you like to grant AppX trusted application status?"
The user says yes and the app runs fine. But ...
3
votes
1answer
230 views
subversion prevent listing of a repository in folder with SVNParentPath
I have several repositories setuped on my domain at:
svn.domain.com
and i have it so it will list the repos by the SVNParentPath configuration.
And now i would like to create user permision for each ...
3
votes
1answer
2k views
How to correctly open a FileStream for usage with an XDocument
I want to append some nodes to an xml document using Linq2XML. The file in question is being used by other processes and they should be able to read the file while I update it. So I came up with this ...
3
votes
6answers
4k views
PHP Access Control System
I am part of a team creating a web application using PHP and MySQL. The application will have multiple users with different roles. The application will also be used in a geographically distributed ...
3
votes
3answers
423 views
Custom role based Web Service access
Our CMS implements its own role based access control for content management and what not, much like all the other CMSs out there ;) I've recently been playing around with the idea of trying to ...
2
votes
1answer
50 views
How can I prevent a process I spawn from spawning child processes?
My Windows XP/7 program launches a child process using the Windows API CreateProcess() function as part of its operations. I want to be able to "sandbox" the application in one but only one ...
2
votes
4answers
151 views
Which Design Pattern to use for assigning allowed operations to user types?
I'm developing a system in C# (.NET 4.0) which will be used by various kind of users.
Each user type will only be allowed to interact with the application in a specific way. For example, user A ...
2
votes
2answers
398 views
How to set the paper size using the WinSpool API?
I can't use the XPS API since the program has to be able to print on Windows XP.
I'm trying to set the paper size from Letter to A4 using WinSpool.
This is my test code:
var
H : THandle;
...
2
votes
1answer
139 views
How do I use ACL with webapp2?
I'm a huge fan of Tipfy, but it's no longer being maintained. Webapp2 seems to have take its place, so I was wondering: how do I use access control lists if I'm using webapp2 instead of Tipfy?
2
votes
3answers
330 views
Is Azure Access Control and WIF suitable when some of the relying parties might not be .Net based
We currently have a few .Net applications on different domains with separate membership on each. We are moving to a federated login with single sign-on (and hopefully single sign-off) and a ...
2
votes
1answer
125 views
Access control with CakePHP - Restricting access by database field
I have an application that has database records that correspond to a city, or a country. My User model has the fields city_id and country_id. If city_id is not zero, the user should just have access ...
2
votes
3answers
244 views
Setting up a user / roles management system - with multi-tenancy
Does anyone have any schema's, data models, or suggestions for creating a user / roles management system that accounts for multi-tenancy. For example, a user in organization A, may be assigned a role ...
2
votes
1answer
81 views
What are these constraints called? Where can I find out more?
Ok, I have been trying to get a 'custom' ACL to work with extra constraints. A normal ACL check is something like:
if(aclCheck($user, 'edit', 'really_important_value')){
// Allow $user to 'edit' ...
2
votes
3answers
141 views
programming language with granular method and property access
imagine something like this:
import class B.*;
interface A supports A.testSum
{
int sum( int a , int b ) access from B.calculator;
testSum() { Assert(sum(1,1)==2); }
........
class B ...
...