The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
7 views

Which folder allows any user to create/edit/delete files? [migrated]

Does anyone here know a folder that is not located in C:\users* that let's any user modify/create/delete files independent of their privilege level and user account?
1
vote
0answers
31 views

What decides privilege level of the process?

I heard of privilege levels, rings, privileged instructions, non privileged instructions, user mode, kernel mode, user space, kernel space. User process will run with low privilege where OS process ...
2
votes
2answers
142 views

Mysql function or procedure to check grants

An user should only execute functions and procedures. I grant EXECUTE to this user and revoke other privileges from the same user for security reasons. How to check if this user has only the EXECUTE ...
0
votes
1answer
48 views

Privileges of an Application

Is there a way to get the privileges associated with a C# program? If yes, how? I know that in C, you have to create a token and make use of the GetTokenInformation() method to get information about ...
1
vote
1answer
47 views

Where does RPL come from?

I am a little confused I read from many different sites but it is not clear to me: Every segment register has a visible part and an inivisible part. The visible part is referred to as the ...
1
vote
0answers
33 views

MySQL privileges applied for the triggers on a non-privileged user's action

I am creating a fresh schema for a new project, My basic requirements are 2 users with different privileges. One is a regular user and have minimum privileges and other is the administrator who have ...
1
vote
1answer
282 views

Set administrator privilege for my C++ application in VS2005

I am currently working on Windows 7 porting of one of our Framework. It was successfully running in Windows-XP 64bit platform. Now I am building all my projects in Windows 7 64-bit. But I couldn't ...
0
votes
1answer
237 views

Win7 Runas Administrator rights but user can kill that process

I use win7 Pro 32bit. I have a c:\record.bat file. This bat file run ffmpeg.exe with some parameters to capture desktop screen and save to video .mp4 files. When I logon with Administrator account, ...
2
votes
1answer
156 views

x86 - changing privilege level from CPL0 to CPL3

I'm working on some low level os code (64-bit) and I'm trying to figure out how to switch from CPL0 to CPL3. The problem is this little sentence in the Intel developer manual I ran across: ''...the ...
0
votes
1answer
73 views

OS X, app can't obtain root previliges when started from standard user

I'm trying to create an installer for OS X. To be able to write to directories owned by root (/Applications, /Library...) I'm using Authorization Services from the Security framework. The following ...
2
votes
1answer
260 views

How can I edit entitlements for xcp-services in X-Code 4 for App-Sandboxing

I created an App and started to sandbox it. Now I did privilege separation using xpc-services. I downloaded the "SandboxedFetch" example from Apple, which shows two xpc-services like an application ...
0
votes
2answers
116 views

How does privilege users work on MySQL?

How does privilege users work on MySQL? Do all users who use a social networking website each has a unique user privilege in order to connect to the db or all users use the same privilege such as: ...
1
vote
1answer
738 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 ...
0
votes
2answers
412 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...
4
votes
1answer
716 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 ...
0
votes
0answers
192 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
4k 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 ...
4
votes
2answers
2k 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
648 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 ...
1
vote
1answer
449 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 ...
2
votes
3answers
454 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
605 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
128 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
636 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 ...
2
votes
1answer
4k 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 ...