Given the dangers of SUID shell scripts, is there a more secure way of giving passwordless access to scripts (bash, PHP) with root permissions in Linux?
(Ubuntu 8.10)
|
3
|
|
|
|
|
|
You could consider sudo. Although not 'passwordless', it doesn't require the user to be given the root password. It can also provide an audit trail of use of the script. edit: as per comment from Chris, there is an option not to require a password at all for certain commands, see here for details. It can also be set up not to prompt excessively for the password, i.e. one entry of the password can be good for multiple commands over a period of use. By the way, sudo is built in to Ubuntu and nicely integrated with Gnome. When ubuntu prompts you for your password to do privileged operations, that's sudo under the hood. |
||||||||
|
|
|
I would recommend sudo. Be sure to tighten your |
||
|
|
|
|
Since sudo has already been mentioned, you might want to consider various sandboxed environments, depending on your needs — e.g., jail or similar. |
||
|
|
|
|
Configuring sudo to let normal users run shell scripts with elevated privileges isn't any better from a security standpoint than making the script suid root. All the pitfalls still exist. Instead you should write a proper program that does extensive security checks. Some points to consider: |
||||||
|
|
|
|
||
|
|
|
|
Be sure to review the "PREVENTING SHELL ESCAPES" section of the sudoers man page if you go the sudo route. |
|||
|
|
|
|
To improve security consider whether it is possible to do the operation as a special user or group, which has exactly the access rights needed for it. Then you can make the script setuid/setgid for that user or group. |
|||
|
|
|
For a really heavy-weight solution, consider a MAC (Mandatory Access Control) system, like SELinux, AppArmor, TrustedBSD etc. |
||
|
|