Tagged Questions
The privilege-elevation tag has no wiki summary.
7
votes
1answer
283 views
UAC and elevation prompt pattern
I've read several questions regarding UAC and privilege elevation but I've not found a satisfactory/comprehensive answer.
I have this scenario: on Windows 6 or above, when the user opens a ...
5
votes
1answer
2k views
Why do I need setuid(0) within a setuid-root C program that calls an administrative program with system()?
I had to do a dirty Linux hack for somebody so they could start a printer with the cupsenable printername shell command while being a non-root user. I didn't want them to be able to use the entirety ...
1
vote
1answer
28 views
Looking for a good sandboxing framework
I am developing an application which needs to sandbox untrusted code. The form the untrusted code is provided in doesn't matter too much, as long as it's fairly expressive. No outside communication ...
1
vote
1answer
136 views
How to access user's ssh keys from the program that is run with sudo?
The dilemma: a Linux program that I'm working on should:
Fetch a "package" over git+ssh:// protocol (using Git).
Install that "package" in the system.
For git+ssh to work, Git needs to see my ...
0
votes
2answers
57 views
where/how to put a class to control what a user can do (privileges)?
I am using a class that performs the right query based on $_POST['action']..
Example:
class data { //>pseudocode
__constructor(){
if ($_POST['action']=='insert')
mysql_query("INSERT ...