suEXEC
{{lowercase}}
{{Infobox software
| name = suEXEC
| logo = Apache HTTP server logo (2019-present).svg
| logo alt =
| logo caption =
| author =
| developer = Apache Software Foundation
| released =
| discontinued =
| ver layout =
| latest release version =
| latest release date =
| latest preview version =
| latest preview date =
| repo =
| programming language = C
| engine =
| operating system =
| platform =
| included with = Apache HTTP Server
| size =
| genre = Apache module
| license = Apache-2.0
| website =
}}
{{Portal|Free and open-source software}}
Apache suEXEC is a feature of the Apache web server. It allows users to run Common Gateway Interface (CGI) and Server Side Includes (SSI) applications as a different user. Normally, all web server processes run as the default web server user (often wwwrun, www-data, apache or nobody). The suEXEC feature consists of a module for the web server and a binary executable which acts as a wrapper. suEXEC was introduced in Apache 1.2 and is often included in the default Apache package provided by most Linux distributions.
If a client requests a CGI and suEXEC is activated, it will call the suEXEC binary which then wraps the CGI scripts and executes it under the user account of the server process (virtual host) defined in the virtual host directive.
Additionally, suEXEC perform a multi-step check on the executed CGI to ensure security for the server (including path-checks, a limit of permitted commands, etc.)[http://httpd.apache.org/docs/2.4/suexec.html apache.org - suEXEC Support]
Example
User "Alice" has a website including some Common Gateway Interface script files in her own public_html
(a common web root directory name) folder, which can be accessed by
.
User "Bob" now views Alice's webpage, which requires Apache to run one of these CGI scripts.
Instead of running all scripts as "wwwrun" (which results in the need that all scripts have to be readable and executable for the "wwwrun" group if the file is owned by that group or for all users otherwise), the scripts in /home/alice/public_html
will be wrapped using suEXEC and run with Alice's user ID resulting in higher security and eliminating the need to make the scripts readable and executable for all users or everyone in the "wwwrun" group (instead only Alice herself needs to be able to run the script).
References
External links
- [https://httpd.apache.org/docs/2.4/suexec.html apache.org - suEXEC Support (Apache 2.4)]
- [https://httpd.apache.org/docs/1.3/suexec.html apache.org - suEXEC Support (Apache 1.3)]
Category:Command-line software
Category:Computer security software
Category:Software using the Apache license
Category:Unix network-related software
Category:Unix security-related software
{{security-software-stub}}