Running Fedora 9/10, Apache 2, PHP 5...
Can I run a shell script as root, from a PHP script using exec()?
Do I just give Apache root priveleges, and then add
You could consider using an ssh connection to localhost with keepair authentication to an account that has root permissions. In such a setup you won't need root access for your webserver.
Don't run Apache as root
. Apache has been designed to cope very well with starting as root
and then dropping its privileges just as soon as it can
Don't use sudo
within your script either - it'll be too easy to end up with sudo
misconfigured such that any script running on your server gets to run any program it likes with root
privileges
Look at making your own program run "setuid", so that it gets root privileges, but then drops them (just like Apache does) when it doesn't need them any more
Make sure your "setuid" executable can't be run by anybody who isn't supposed to be able to run it.
You need a layer of abstraction to provide a little security at least!...
The way I do this is to write a simple UDP server* with root privs in Python which: watches out for incoming UDP packets on a given port compares them to a whitelist if they match carry out the operation
You then have a little bit of PHP that messages the Python server with pre-defined messages...
<?php
$handle = fsockopen("udp://localhost",12345);
fwrite($handle,"Start Script");
fclose($handle);
?>
The python server watches for packets on port 12345 but just ignores any that aren't either "Start Script" or "Stop Script", as it runs as root it can happily start your bash script. You ABSOLUTELY MUST use white-listing though, it is REALLY NOT SAFE to send ANY input from a UDP socket to the command line directly!
Do note that UDP can be spoofed so if your firewall permits spoofed inbound traffic (it realy ought not to!) someone could send forged packets to your Python server and stop/start your service. This is unlikely to be a problem but if you can't fix your firewall and you want to guard against it you could rework the above using TCP/IP which can't be spoofed.
Roger Heathcote.
*It's a really trivial server to write ( ~20 lines ) but if you don't know how to then just message me and I will send it to you or post it here.
You can't just sudo like that, you need to setup passwordless sudo first in /etc/sudoers file. This can be done with visudo command for example. Make sure you set up privileges in sudoers file in such way to constrain the apache user to that single command you wish to run (i.e. your shell script).
Even then, it poses a security risk, because anyone could create a PHP script and run your shell script in turn. So make sure that shell script itself is secure from alteration by Apache user.
The second part, killall, is even more problematic. You shouldn't just allow Apache to run killall with root privileges. You should wrap killall in another shell script and grant access to that in sudoers.
In the end: do not run Apache with root account and do not use setuid. Both open a can of worms, and since you are a newbie (given the question you asked) you are very likely to miss some of small details that would create potential problems.
I'm not professional in this field, but it looks like you need SUID flag.
Read here for examples or google
You don't want to give Apache root.
There's another solution to your problem. The problem is that Apache cannot kill the process because it is owned by root. What you can do is change the owner to 'www-data' which is what Apache is identified as.
If the process is a service and starts up on boot you can add the
sudo -u www-data <start-up script>
so that www-data would be the owner of that process and hence running the shut-down script would work.