I'm trying to build a firewall manager in PHP, but when I execute, <?php exec('iptables -L'); ?>
, the result array is empty.
I have tried, <?php echo exec('whoami'); ?>
, and the response is www-data
(the user that Apache is using). What can I do to execute the exec function as root? (Preferably without changing the Apache user.)