This tag is for questions relating to the general topic of privileges, without reference to any specific operating system or application.

learn more… | top users | synonyms

0
votes
0answers
17 views

Oracle: Roles, Tables, Privileges as Matrix

In Oracle there is a view called role_tab_privs which details table privileges granted to roles. It has rows like this (not all columns displayed): Table Role Privilege table1 ...
0
votes
0answers
7 views

Limiting Access of Technical User in iTunes Connect

My company has a single Apple account under which we develop several apps. I would like to add technical users to the account in iTunes Connect but want to limit each technical user's access, or at ...
0
votes
1answer
21 views

Does Extended Validation Code Signing certificate helps avoid Windows UAC popup window

The questions relates to Windows 7 and up. So far I signed my code with a regular code signing certificate. My application requires admin privileges since it uses raw sockets. Upon application start ...
1
vote
1answer
29 views

visual studio runs as administrator, even when told not to

I was having some issues with Quickbooks integration when running visual studio as administrator (which I had set as default), so I went in and turned it off. (Properties, security, advanced, uncheck ...
0
votes
1answer
18 views

Load Data infile database access Permissions / privileges

I need to load a CSV file from client machine to MySQL server database. I am trying LOAD DATA INFILE. My confusion is regarding ACCESS PERMISSIONs required to use - LOAD DATA INFILE - LOAD DATA ...
-1
votes
0answers
22 views

how vulnerable is supervisor mode in Unix? [closed]

How can outsider gain access to supervisor mode in microprosessor illegally ( i.e how vulnerable is supervisor mode in Unix) ?I know in superviosr mode we can execute privileged instructions, contains ...
0
votes
0answers
4 views

Lost admin “manage_link” capability WordPress. No “Links” menu item in admin menu [migrated]

Going slightly mad. In the process of upgrading a client's website to WordPress 3.5.1 we've decided to use the built-in WordPress "Links" system to manage their affiliations. I am using the "Admin ...
0
votes
1answer
30 views

db2 restore database and privileges

I have a backup of database (IBM DB2 v. 9.7) After restore command I cannot access some of the tables due to privileges issues. On the original db client and database we have a user: userx with ...
0
votes
1answer
32 views

Does system() syscall drop privileges?

I am doing some experiments about Linux permissions, using Ubuntu 12.04 (64bit). I created the following program. #include<stdio.h> #include <unistd.h> main(){ ...
0
votes
1answer
63 views

How to revoke access to *.* for new user in mysql?

In mysql 5.6 command line client (when logged in as root), i created a user with: CREATE USER 'admin'@'localhost' IDENTIFIED BY 'password'; Then granted privileges with: GRANT ALL PRIVILEGES ON ...
0
votes
2answers
16 views

Django Client and Extranet Users distinction

I'm building an App with public access, restricted area for clients and another restricted area for managers. I have a Manager model and Client model with foreign key to Users. And Manager is ...
0
votes
1answer
24 views

MySQL Privileges not Restoring?

I've just reinstalled everything on my machine. I exported all individual databases from my old MySQL server and I'm attempting to reinstall them on the new one. However, even after importing all ...
0
votes
1answer
40 views

access to model specific registers, IA32_APERF / IA32_MPERF, to measure actual CPU frequency

As far as I understand to measure the actual operating CPU frequency I need access to the model specific registers (MSR) IA32_APERF and IA32_MPERF (Assembly CPU frequency measuring algorithm). ...
0
votes
0answers
18 views

Creating an admin user in Oracle [migrated]

How can I create a "root" (like on MySQL) in Oracle? I installed Oracle database on my system, for homework, for school (faculty) but it didn't give me the option to make a root user. Well at least I ...
0
votes
1answer
24 views

How to achieve some measure of “privilege separation” with Java web-server?

I'm trying to be proactive around security on my Jetty web-server boxes -- especial with regards to storing SSL key information. Apache uses privilege separation so that it starts as root so it can ...
0
votes
1answer
30 views

MySQL Privileges, allowing/disallowing

I have been playing around with user privileges in MySQL database and I still can not get desired result. Yesterday, I granted permissions, then revoked and the user did still have it. (same browser, ...
1
vote
4answers
78 views

Ensure that a column can only be modified if it IS NULL and only by some users

I have a column A (type int) in a table for which data is not available at insert time of the other values. I do not want to split the table, as there is no other real reason to do so. I am ...
0
votes
2answers
81 views

Windows Messages Privileges

what are the windows messages privileges? In the Application 1, I posted a message to Application 2: PostMessage(handle, WM_LOCAL, 0, Integer(Lst)); In the Application 2, The Message ...
0
votes
1answer
46 views

Could the Killing process privilege in SQL Server be asigned to 1 user for 1 database only?

I do not know how to work with the management of privileges in SQL Server. I have a hosting that offers me SQL Server database. If any problem of the type -an object is blocked- occurs I need to ...
5
votes
2answers
81 views

Python: drop root privileges for certain operations

In my Python script, I perform a few operations that need root privileges. I also create and write to files that I don't want to be owned exclusively by root but by the user who is running my script. ...
1
vote
0answers
84 views

Change admin privileges after copying an exe file programmatically

This is my first question on stack overflow. I've been programming in C# for quite sometime now. I've got lot of help from you'll during the past few days. But I'm stuck here... I have built an exe ...
0
votes
1answer
179 views

Access denied for user 'myUser'@'localhost' (using password: YES)

Does that (using password: YES) means password is not matching ? I am getting this error even I , as root user, has granted privileges to all the databases to the user ! GRANT ALL PRIVILEGES ON *.* ...
1
vote
2answers
53 views

How to allow non-existent privileges in Zend_Acl?

I'm using ZF 1.12.2, and I'd like to create a blacklist for my Zend_Acl privileges since I have less to restrict than to allow. I'm basing my ACL resource names on my controller names and my ...
1
vote
1answer
22 views

sc qprivs blank priviliges

When running the following command I receive this output: SERVICE_NAME: AdobeARMservice PRIVILEGES : [SC] QueryServiceConfig2 SUCCESS My question is what kind of privileges ...
1
vote
1answer
67 views

JavaScript ExtJS - Access Handling with Privileges

i am planning a WebApplication. Using ExtJS to build my frontend and an ASP WebService for the Backend. Communicating via json.. Though there is one big questionmark in my mind. I have multiple ...
0
votes
1answer
556 views

Permission denied for relation [closed]

I tried to run simple sql command: select * from site_adzone; and I got this error ERROR: permission denied for relation site_adzone What could be the problem here? I tried also to do select ...
0
votes
1answer
68 views

How to run a executable as guest or limited user using java ProcessBuilder

Lets say i'm running as admin and i have a c executable as 'myProgram.exe'. I want to execute it using ProcessBuilder in my java program. e.g. ProcessBuilder pb = new ...
0
votes
1answer
82 views

How to define and use a site level “User Privilege Level” variable with Javascript / PHP / MySQL

I usually tend towards specific technical questions however this is a fairly open one, but still within the confines of Q&A rather than discussion. It regards best implementation of a user level ...
0
votes
0answers
103 views

Problems with user's privileges, wordpress, phpmyadmin, my host provider and I hope that's all

So I've been trying to install a new wordpress site beside an already working site. I want to have 2 different databases, so i created a new one, and I didn't go very far from that. I get the message ...
1
vote
1answer
63 views

how to run an application with user privileges from root console [closed]

I run a bash script from Linux root console. So this script runs an application with root privileges. But I need an application to be called as user. Can this scenario work as I expected?
0
votes
0answers
295 views

Windows 8 mapped drives paths not recognized correctly by Service

I am facing a problem in Windows 8 where an elevated application/service that impersonates the logged in user does not recognize the mapped drives paths correctly. I have a windows service that I use ...
1
vote
2answers
55 views

python change privileges to restart external application

Hi I have a python script which modifies an application configuration file. To applied this, I need to restart the application. To do that I call a init.d file. But I need to be root when I do this ...
0
votes
1answer
66 views

Map Active Directory Users to Internal Groups

We have an in-house database that works with Users & Groups, and assigns Rights to certain Groups, and assigns Groups to Users. We're looking to integrate this with Active Directory and I had a ...
1
vote
1answer
176 views

Oracle select privilege on DBA_ROLES

I am connected into Oracle 10g database with user "user", when i run a select on DBA_ROLES it displays the result without any problem, but when the select is inside a procedure it returns the error ...
0
votes
1answer
25 views

oracle11g privileges

I have 3 users, userA, userB, userC. Using userC I have to make a query on usuarioB.subject. The privilege to userC must be assign through userA. what must do userB for leaving userA giving ...
0
votes
0answers
22 views

Why does Users Privileges reset automaticaly from ALL PRIVILEGES back to USAGE after some time?

I just moved to a dedicated server, with a few web applications, and I had to add a users with super user privileges. When the users where added the default "Global Privileges" were "USAGE" in ...
0
votes
1answer
43 views

php - very granulated user privileges

I am currently building an application for multiple users and have gotten to the user privileges part. The application consists of about 20ish submenu items and each should be granted/denied access ...
0
votes
0answers
44 views

Create MySQL administrative database users in shared hosting package

I have a shared hosting package and MySQL database service. I have some web developers to whom I assign tasks. I want to create a separate database user for each developer. I want to give each ...
0
votes
1answer
78 views

How to get root privileges from process

It's possible to get root privileges by simple code like this: char *name[2]; name[0] = "/bin/bash"; name[1] = "-p"; name[2] = 0x0; execve(name[0], name, 0x0); but this solution requires to set ...
0
votes
0answers
63 views

MySQL - Give access to all users on a database

I've created a database with tables and functions I want every users to have access. Then I've granted all privileges to all users using this command: GRANT ...
1
vote
1answer
122 views

Impersonating a user as LocalSystem on Windows

I have a process that runs as LocalSystem on Windows XP and following. I am trying to find a way to have it start another process impersonating another user without having to provide the user ...
-1
votes
1answer
151 views

VB6: Check if process has admin right [closed]

I want to check if a program is run with admin rights. But I am completely unsure how I should do this. Thank you for any help!
0
votes
0answers
32 views

Revoke camera rights on Windows 8 [closed]

I'm not sure whether I'm right in this section, maybe someone could redirect me if necessary ... I've granted the camera app on Windows 8 the privilege to use the webcam. Now I want to revoke this ...
5
votes
1answer
231 views

MACOSX: how to start daemon which need root privileges from cocoa application

Conditions are the following: MacOSX 10.7 and Cocoa graphical application written in objective-c. I am faced the following problem. I can't start daemon application from /user/bin folder from my ...
0
votes
1answer
158 views

Setting user privileges in PHP and MYSQL

I want to make some of my php pages accessible to certain users. I flag these users in my users table as 'super_user' in the 'user_privilege' attribute. So fat I have got the login and sessions ...
4
votes
3answers
2k views

Phpmyadmin doesn't show “privileges” tab

I have WAMP installed on Windows, and I can't seem to get the "privileges" tab to show in PhpMyAdmin no matter what. Reading other forum discussions and articles, I have done the following: Checked ...
0
votes
1answer
40 views

Revoke connect from superuser

Is there any way to revoke connect (or preferably all) privileges on database from role that is defined as superuser on the server? On dev server we've got several databases - one of them is shared, ...
0
votes
1answer
144 views

Granting and Revoking Privileges - MySQL

Say I grant all my privileges to a friend, and he has all my permissions to edit, select, delete, update etc. all my data. Can my friend revoke me from my own database? I believe he can grant my ...
0
votes
1answer
62 views

Wampserver root privileges error

By accident I deleted all root users in msql/wampsever and then i can't acces phpmyadmin ! I tried to launch mysql console and connect to root .. It works so i don't know what i should do ! ...
0
votes
1answer
65 views

Display default access privileges for relations, sequences and functions in Postgres

After altering the default privileges on a Postgres database object, how can you view them? For instance, if you grant all privileges to role_name for all tables created in the schema schema_name: ...

1 2 3 4 5 10