vote up 5 vote down star
1

I created a server program that will be started as root. After it is started I want to drop privileges to another user. How can I do this securely?

flag
Not so good with linux, but maybe spawn a new process running as 'nobody'? – Charlie Somerville May 26 at 11:44

2 Answers

vote up 9 vote down check

See Privileges::Drop.

link|flag
I used this module. It seems to work ok. Thank you. – Peter Stuifzand May 26 at 12:01
vote up 5 vote down

You don't really need a module, although the one linked by Benji York looks pretty nice.

It's a simple matter of setting the UID via $< and $>. See perlvar for further information on these. You can also set the GID this way using $( and $).

link|flag
2  
Don't forget $( and $). – Chas. Owens May 26 at 13:14
good point. I imagined he'd just use the drop priv module, and there's really no reason not to, or I'd have provided an example. It would look much like the source for the module though. – jettero May 26 at 16:44

Your Answer

Get an OpenID
or

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