vote up 2 vote down star
1

I have an app that normal users need to be able to run, but requires administrator privileges to actually function.

I tried to make the shortcut that my users run it with "Run as administrator" but this just causes a UAC prompt whenever they try to run the app.

Is there any way to elevate privileges programatically, without my users needing to go through a UAC prompt and/or knowing an administrator password? From a security standpoint, I understand that most applications shouldn't be allowed to do this, so I'm hoping there is some way to do it if I can provide a valid username/password pair, or something.

The app is written in C#, so a fully managed solution would be preferred, but p/Invoke Black Magic (or even writing an MC++ Wrapper Which We Do Not Speak About) would be more acceptable than disabling UAC entirely.

flag

63% accept rate
1  
I don't understand. If your app can do this, what's to prevent any app, including malware, from doing the same thing? Wouldn't that just defeat the point? – Greg D May 12 at 13:49
Greg D: That's why I mentioned a username/password pair. I'm guessing most administrators that leave UAC enabled won't provide those to things that don't need it. – Alex Lyman May 12 at 13:52
UAC will not ask you for a password when you are logged in as an administrator. It will just ask for your approval. – Tomalak May 12 at 13:58

1 Answer

vote up 5 vote down

Generally this problem solved by installing a Windows Service which runs as SYSTEM or an admin account. Then your application can request the privileged action from this service.

Obviously to not pose a security threat ensure that your service can't run arbitrary code or something which might leave the all users vulnerable to privilege escalation attacks.

Winpcap and most of the other sniffing applications use a similar design to give sniffing access to unprivileged users.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.