Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
374 views

What specifically causes EPrivilege to be raised?

I'm getting a bug report that some functionality in some music-playing code in an external DLL (SDL_Mixer, in case it helps) that my program uses is raising EPrivilege. The DLL is written in C, so I ...
2
votes
1answer
124 views

How to bind to a port less than 1024 in Android?

I have an Android service trying to bind to a server socket port 24. As it is privileged port, it is failing with a bind exception. I am wondering what I need to do to get this working. I see this was ...
2
votes
1answer
213 views

Root priv can't be dropped in python even after seteuid. A bug?

Root priv can't be dropped in python even after seteuid. A bug? Hi. I can't drop the root privilege in python 3.2 on my linux. In fact, even after seteuid(1000), it can read root-owned 400-mode ...
2
votes
3answers
291 views

C Privilege Escalation (With Password)

I need to write a C program that will allow me to read/write files that are owned by root. However, I can only run the code under another user. I have the root password, but there are no "sudo" or ...
1
vote
1answer
52 views

Oracle Security - how to prevent a User from DROP TABLE its own tables

As security tightening exercise, I'm removing all system privileges from an oracle database user. Now this user ONLY has the following system privileges: CREATE SESSION UNLIMITED TABLESPACE I was ...
1
vote
1answer
222 views

Privileged instructions, adding register values?

I finished homework for a graduate course in operating systems. I got a great score and I only missed one tiny point of a question. It asked which were privileged instructions and which were not. I ...
1
vote
1answer
147 views

Why would I want an Oracle user without 'create session' privilege?

I just learned that by default, Oracle does not grant the 'create session' privilege to new users. No problem, I can do that myself. Anyway, I'm curious: why would I want an Oracle user without ...
0
votes
1answer
33 views

Define privilege in batch File

I need to make a batch(.bat) file in which i want to give an administrator privilege.. mean every time when it open, it is in Run as an administrator Mode... hope you understand...
0
votes
0answers
36 views

In my windows service, running as localsystem, when it starts a process, does that process have the same privileges?

I am refactoring my application so that it can run in the background of non-admins. Do I need to migrate all the non-gui code to the service or will it suffice that the service starting the process ...
0
votes
2answers
129 views

Why do I get Access Denied when accessing certain files using Java even if I am administrator?

I am logging on Windows server 2008 R2 using my windows account that is a member of administrators group. I need to run a java program to modify some local files for which the administrators have ...
0
votes
1answer
87 views

Privilege used by MoveFileEx()

When calling MoveFileEx() and using MOVEFILE_DELAY_UNTIL_REBOOT for dwFlags. During the actual moving of file what privilege does it use? Thanks Kazuo!
0
votes
2answers
378 views

Install Shield 2009 Premier : Don't want to put the entry to control panel

My installation would 1. copy some files 2. some registry entries that require admin privilege e.g. HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\MyRegistry What I want: 1. No entry to the control ...
0
votes
1answer
2k views

What Oracle privileges do I need to use DBMS_METADATA.GET_DDL?

(Excuse any ignorance of mine here - I'm not a seasoned Oracle user.) I'm attempting to use the DBMS_METADATA.GET_DDL function (in conjunction with ALL_OBJECTS or some such) to get the DDL for all of ...