UCF STIG Viewer Logo

The oddjobd service must not be running.


Overview

Finding ID Version Rule ID IA Controls Severity
V-38646 RHEL-06-000266 SV-50447r2_rule Low
Description
The "oddjobd" service may provide necessary functionality in some environments but it can be disabled if it is not needed. Execution of tasks by privileged programs, on behalf of unprivileged ones, has traditionally been a source of privilege escalation security issues.
STIG Date
Red Hat Enterprise Linux 6 Security Technical Implementation Guide 2015-05-26

Details

Check Text ( C-46206r2_chk )
To check that the "oddjobd" service is disabled in system boot configuration, run the following command:

# chkconfig "oddjobd" --list

Output should indicate the "oddjobd" service has either not been installed, or has been disabled at all runlevels, as shown in the example below:

# chkconfig "oddjobd" --list
"oddjobd" 0:off 1:off 2:off 3:off 4:off 5:off 6:off

Run the following command to verify "oddjobd" is disabled through current runtime configuration:

# service oddjobd status

If the service is disabled the command will return the following output:

oddjobd is stopped


If the service is running, this is a finding.
Fix Text (F-43595r2_fix)
The "oddjobd" service exists to provide an interface and access control mechanism through which specified privileged tasks can run tasks for unprivileged client applications. Communication with "oddjobd" is through the system message bus. The "oddjobd" service can be disabled with the following commands:

# chkconfig oddjobd off
# service oddjobd stop