Tagged Questions

Short for "file system permissions" — access control based on user, group, or global access.

learn more… | top users | synonyms (1)

56
votes
1answer
32k views

What permission do I need to access Internet from an android application?

I get the following Exception running my app: java.net.SocketException: Permission denied (maybe missing INTERNET permission) How do I solve the missing permission problem?
28
votes
4answers
3k views

Modelling a permissions system

How would you model a system that handles permissions for carrying out certain actions inside an application?
22
votes
1answer
6k views

IIS AppPoolIdentity and file system write access permissions

Here's an issue with IIS 7.5 and ASP.NET that I've been researching and getting nowhere with. Any help would be greatly appreciated. My question is: using ASP.NET in IIS 7.5, how does IIS and/or the ...
20
votes
8answers
3k views

How do I check whether File.Delete() will succeed without trying it, in C#?

In C#, System.IO.File.Delete(filePath) will either delete the specified file, or raise an exception. If the current user doesn't have permission to delete the file, it'll raise an ...
19
votes
4answers
725 views

Best way to implement permissions?

I'm creating a website in which there are projects, users, and permissions for each user or groups of users. What this is is a community collaboration tool, and I have 4 different permissions: ...
19
votes
5answers
12k views

Finding out what user Apache is running as?

I want to secure a file upload directory on my server as described beautifully here, but I have one problem before I can follow these instructions. I don't know what user Apache is running as. I've ...
18
votes
3answers
12k views

Admin rights for a single method

Is it possible to require administrator rights for one single method? Something like this: [RequireAdminRightsForThisMethod()] private void TheMethod(){ // Do something }
15
votes
5answers
6k views

git - how to recover the file permissions git thinks the file should be?

I have a git checkout. All the file permissions are different than what git thinks they should be therefore they all show up as modified. Without touching the content of the files (just want to ...
14
votes
5answers
2k views

Dropping Root Permissions In Python

I'd like to have a Python program start listening on port 80, but after that execute without root permissions. Is there a way to drop root or to get port 80 without it?
14
votes
3answers
11k views

file write permission issue under “Program Files” folder

I am using inno setup to make a installation package for my application, and my application is written by C# + .Net 2.0 + VSTS 2008. Inno setup => http://www.jrsoftware.org/isinfo.php and I install my ...
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 ...
13
votes
10answers
14k views

C# Test if user has write access to a folder

I need to test if a user can write to a folder before actaully attempting to do so. I've implemented the following method (in C# 2.0) that attempts to retrieve the security permissions for the ...
13
votes
7answers
5k views

What to do when bit mask (flags) enum gets too large

I have a very large set of permissions in my application that I represent with a Flags enumeration. It is quickly approaching the practical upper bound of the long data type. And I am forced to come ...
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
1answer
431 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
8k views

Why are these permissions being refused?

Just for the Heck of it, I requested all the permissions from my application (hello world), to see what are the types of permissions that are granted and what are those that are refused! To my ...
12
votes
3answers
6k views

SQL Server: How to permission schemas?

Inspired by various schema related questions I've seen... Ownership chaining allows me to GRANT EXECUTE on a stored procedure without explicit permissions on tables I use, if both stored procedure ...
12
votes
7answers
552 views

How to forbid calling a method C#

I want to allow calling the method only from the particular methods. Take a look at the code below. private static void TargetMethod() { } private static void ForbiddenMethod() { ...
12
votes
6answers
6k views

Can I listen on a port (using HttpListener or other .NET code) on Vista without requiring administrator priveleges?

I'm using HttpListener to allow a user to set up a proxy on a user-defined port. When I start the HttpListener, I get an exception if the application isn't running under administrator privileges in ...
11
votes
6answers
6k views

Will Django be a good choice for a permissions based web-app?

I've been exploring the details of Django for about a week now and like what I see. However I've come upon some.. negativity in relation to fine-grained control of permissions to the CRUD interface. ...
11
votes
6answers
6k views

How do you set directory permissions in NSIS?

I'm trying to build a Windows installer using Nullsoft Install System that requires installation by an Administrator. The installer makes a "logs" directory. Since regular users can run this ...
11
votes
5answers
4k views

sudo echo “something” >> /etc/privilegedFile doesn't work… is there an alternative?

This is a pretty simple question, at least it seems like it should be, about sudo permissions in linux. There are a lot of times when I just want to append something to /etc/hosts or a similar file ...
10
votes
3answers
128 views

Is an Xcode command line tool project allowed CoreLocation permissions?

I have a Xcode 'Command Line Tool' project written in C++. I recently added the CoreLocation framework and associated code to find the users location. Usually, when I implement the CoreLocation ...
10
votes
3answers
7k views

How to grant MODIFY_PHONE_STATE permission for apps ran on Gingerbread

I write an app that attempts to modify phone call state. It works well on Android 2.2 or less, but throw an exception on Android 2.3 because of the lack of permission on ...
10
votes
3answers
2k views

Stored Procedure and Permissions - Is EXECUTE enough?

I have a SQL Server 2008 database where all access to the underlying tables is done through stored procedures. Some stored procedures simply SELECT records from the tables while others UPDATE, INSERT, ...
10
votes
8answers
2k views

Common CMS roles and access levels

I am currently writing a CMS and remember someone (it might have been on here) criticise the existing CMS for not having a robust enough user permissions system. I've got a method planned out but it ...
10
votes
10answers
2k views

User permission error when accessing “user instance” database from ASP.NET

The server hosting csharpindepth.com has recently been migrated. Most of it is working fine, but I can't get at the database used to hold errata, notes etc. Relevant details: 32 bit Windows Server ...
10
votes
8answers
6k views

Accessing Environment Variables from Windows Services

I am attempting to write a Windows Service in C#. I need to find the path to a certain file, which is stored in an environment variable. In a regular C# console application, I can achieve that with ...
9
votes
2answers
3k views

Installing in Homebrew errors

Attempting to install rvm and ruby 1.9.2 I already installed homebrew and git, but couldn't get complete updates because I kept getting permission errors. Re-installed Snow Leopard and repaired ...
9
votes
1answer
514 views

Django Inlines user permissions + view only - permissions issues

I'm not sure if this is a bug or I'm just missing something (although I have already parsed the documentation about inlines), but: Let's say I have a model A. Model A is an inline of model B. User U ...
9
votes
3answers
2k views

RESTful Authorization

I'm building a community-based site in Rails for the members of a real-world organization. I'm trying to adhere to the best practices of RESTful design, and most of it is more or less by-the-book. The ...
9
votes
2answers
6k views

svn+apache per directory access control: weird permissions issue (403 Forbidden error)

I had a perfectly working svn+apache install where I was using per directory access control to restrict access to various parts of the repository. In particular, no one had access to the top level in ...
9
votes
5answers
5k views

How to get a list of all users with a specific permission group in Django

I want to get a list of all Django auth user with a specific permission group, something like this: user_dict = { 'queryset': User.objects.filter(permisson='blogger') } But I cant seem to find ...
9
votes
10answers
1k views

Where are the best locations to write an error log in Windows?

Where would you write an error log file, say ErrorLog.txt, in Windows? Keep in mind the path would need to be open to basic users for file write permissions. I know the eventlog is a possible ...
9
votes
7answers
6k views

How do I check if a directory is writeable in PHP?

Does anyone know how I can check to see if a directory is writeable in PHP? The function is_writable doesn't work for folders.
8
votes
1answer
172 views

How do I query effective permissions on an Active Directory Object?

I'm trying to programmatically determine whether the current user has certain permissions on a given Active Directory object (specifically in this case, I'm trying to determine whether the user has ...
8
votes
1answer
106 views

Java file permissions for threads

I'm programming a Java server that has to handle Python code given by the user using Jython. Obviously, I can't just execute it without some risk of a cracker accessing files and system commands that ...
8
votes
1answer
184 views

Implementing log in alongside suPHP

How can a log in like feature be designed to use suPHP's file permissions. For example, if I have a website at www.example.com and the following two users with their own home directories, each with a ...
8
votes
2answers
3k views

session_start(): ps_files_cleanup_dir: opendir(/var/lib/php5) failed: Permission denied

I get this error sometimes, what gives? I guess it has something do with file permissions on my ubuntu 10.10 box. How do I stop it?
8
votes
2answers
3k views

SQLite: read-only database

I have a SQLite database that I am using for a website. The problem is that when I try to INSERT INTO it, I get a PDOException SQLSTATE[HY000]: General error: 8 attempt to write a readonly database ...
8
votes
5answers
1k views

Django 1.2 object level permissions - third party solutions?

Since Django 1.2 final is almost out, I am curious if there are already projects that use the new object level permissions / row level permissions system. Django-authority, which is a possible ...
8
votes
1answer
757 views

Can Android apps request additinal permissions at runtime?

I'm working on an app which contains some scripting support. The scripts executed by this app might require all sorts of permissions in the future, but it's difficult to predict which ones. Is there ...
8
votes
6answers
655 views

How can I prevent users from committing binaries into subversion?

I have a headstrong user who stubbornly insists on committing his binaries (executables, DLLs) into our subversion repositories. I'd go in and delete them, but of course nothing is ever really deleted ...
8
votes
3answers
8k views

IIS7 Failed to grant minimum permission requests

I get this error when I'm using FileHelpers.dll, but my IIS is set to Full trust level so it should not be that way That's the full stack trace: [PolicyException: Required permissions cannot be ...
8
votes
2answers
503 views

What are the minimum permissions a user needs to install and run a ClickOnce app based on .NET 3.5?

Googling reveals many technical details and framework/OS prerequisites, but it seems to be hard to find a source that lists the permissions that are required for installing and running a ClickOnce ...
8
votes
2answers
10k views

Unable to Connect to Tomcat Using VisualVM

I am having problems monitoring a remote Tomcat process. I'm trying to use the Java 6 versions of JConsole/JVisualVM. I have jstatd running on the remote server with the appropriate security ...
8
votes
7answers
6k views

Why does my .net application require full trust?

I've developed a .net 3.0 application, which is deployed using clickonce. I'd like to move from full trust to partial trust to ease deployment. I've tried the "Calculate Permissions" tool in the ...
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 ...
8
votes
7answers
13k views

Overcoming “It is being used by another person or program.”

Is there a way to unlock Windows files without downloading a utility? I have a few files on my Windows XP C: drive that are very old and very useless. When I try to delete these files I get the ...
7
votes
1answer
190 views

How to correctly implement “As Administrator” or “Run As Administrator” in .NET application for selected operations?

I'm looking for correct way to allow elevating privileges for selected operations. Something similar many products offer. For example if you have UAC turned on and you are using Total Commander ...

1 2 3 4 5 57