Re: Calling sudo from PHP script under Apache httpd
"Todd C. Miller" <[email protected]> Thu, 11 Feb 2021 09:18:46 -0700
| Newsgroups | gmane.comp.tools.sudo.user |
|---|---|
| Message-ID | <[email protected]> |
On Thu, 11 Feb 2021 11:45:28 +0200, Dima Goncharuck wrote: > I have some problem with subj and I can't detect a source(s) of a problem(s). > > So, I need to run some command by php script via Apache HTTPD. > And it's not working at all. In httpd log file (/var/log/apache/error.log) I > can see this: > > sudo: PERM_ROOT: setresuid(0, -1, -1): Operation not permitted > sudo: unable to initialize policy plugin > > With turned on sudo debug I can see this (/var/log/sudo_debug.log): The debug information you want may be in the sudoers debug log. Try the following in your /etc/sudo.conf file. Debug sudoers.so /var/log/sudoers_debug all@debug I don't know why that setresuid() call would be failing. Sudo does checks at startup to make sure it is running as root. Perhaps PHP runs commands in a sandbox (using seccomp or something similar) that disables changing the uid? You should check the audit log (if it exists) to see if there is anything relevant in it. It is also possible that AppArmor is interfering with sudo. You can run "aa-status" as root to see whether it is enabled (assuming it is even installed). The audit log should also contain information about AppArmor if it is getting in the way. - todd ____________________________________________________________ sudo-users mailing list <[email protected]> For list information, options, or to unsubscribe, visit: https://www.sudo.ws/mailman/listinfo/sudo-users