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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
See Privileges::Drop. |
||||
|
|
|
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 $). |
|||||||
|