What is the appropriate way to run higher privilege commands via over HTTP - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T19:57:38Zhttp://stackoverflow.com/feeds/question/942224http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/942224/what-is-the-appropriate-way-to-run-higher-privilege-commands-via-over-http0What is the appropriate way to run higher privilege commands via over HTTPh32009-06-02T22:25:25Z2009-06-03T04:35:13Z
<p>I have a web project for which I need to run a command when a specific URL is requested, but that command requires root privileges.</p>
<p>The project is served with a Python process (Django), of course running it with root privileges is not an option.</p>
<p>The command's parameters are hardcoded making it impossible to inject anything and it's a right protected application so I can be slightly more liberal on security since the users who will have access to it will be trustworthy (hopefully). However ideally I would like to do it securely.</p>
<p>.</p>
http://stackoverflow.com/questions/942224/what-is-the-appropriate-way-to-run-higher-privilege-commands-via-over-http/942241#9422414Answer by RichieHindle for What is the appropriate way to run higher privilege commands via over HTTPRichieHindle2009-06-02T22:28:37Z2009-06-02T22:28:37Z<p>Use setuid: <a href="http://en.wikipedia.org/wiki/Setuid" rel="nofollow">http://en.wikipedia.org/wiki/Setuid</a></p>
<p>"setuid and setgid (short for set user ID upon execution and set group ID upon execution, respectively) are Unix access rights flags that allow users to run an executable with the permissions of the executable's owner or group."</p>
<p>...And be very, very careful!</p>
http://stackoverflow.com/questions/942224/what-is-the-appropriate-way-to-run-higher-privilege-commands-via-over-http/942242#9422424Answer by David Schmitt for What is the appropriate way to run higher privilege commands via over HTTPDavid Schmitt2009-06-02T22:28:44Z2009-06-02T22:28:44Z<p>Callout to the command via <code>sudo</code> with the <code>NOPASSWD:</code> option, that allows you fine grained access control. Avoid using a shell and use a <code>exec</code> variant that takes the parameters directly as array.</p>
http://stackoverflow.com/questions/942224/what-is-the-appropriate-way-to-run-higher-privilege-commands-via-over-http/943073#9430731Answer by daniel for What is the appropriate way to run higher privilege commands via over HTTPdaniel2009-06-03T04:35:13Z2009-06-03T04:35:13Z<p>By all means avoid using setuid and setgid, you want to keep the HTTP server with as low permissions as possible. For the process that requires root privileges, use the http server to create a whole new separate process and invoke sudo. You should however not include the HTTP server uid or gid in the sudoers, but some other user that is the only one that can access the program, and that program is the only one that can run as root. The HTTP SERVER then starts a new process, it changing the UID to the dumb user and then executes the process with sudo as root.</p>