{"id":4046,"date":"2014-12-03T00:08:20","date_gmt":"2014-12-02T16:08:20","guid":{"rendered":"http:\/\/rmohan.com\/?p=4046"},"modified":"2014-12-03T00:08:20","modified_gmt":"2014-12-02T16:08:20","slug":"red-hat-enterprise-linux-6-security-tips-and-hardening","status":"publish","type":"post","link":"https:\/\/mohan.sg\/?p=4046","title":{"rendered":"Red Hat Enterprise Linux 6 Security TIPS and Hardening"},"content":{"rendered":"<p>&nbsp;<\/p>\n<div>Rules In <i>Pre-release Final STIG for Red Hat Enterprise Linux 6<\/i><\/div>\n<p>&nbsp;<\/p>\n<table>\n<thead>\n<tr>\n<td>V-ID<\/td>\n<td>CCI<\/td>\n<td>CAT<\/td>\n<td>Title<\/td>\n<td>Description<\/td>\n<td>Check Procedures<\/td>\n<td>Fixtext<\/td>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>RHEL-06-000001<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The system must use a separate file system for \/tmp.<\/td>\n<td>The <code>\/tmp<\/code> partition is used as temporary storage by many programs. Placing <code>\/tmp<\/code> in its own partition enables the setting of more restrictive mount options, which can help protect programs which use it.<\/td>\n<td>Run the following command to determine if <code>\/tmp <\/code> is on its own partition or logical volume:<\/p>\n<pre>$ mount | grep \"on \/tmp \"<\/pre>\n<p>If <code>\/tmp <\/code> has its own partition or volume group, a line will be returned. If no line is returned, this is a finding.<\/td>\n<td>The <code>\/tmp<\/code> directory is a world-writable directory used for temporary file storage. Ensure it has its own partition or logical volume at installation time, or migrate it using LVM.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000002<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The system must use a separate file system for \/var.<\/td>\n<td>Ensuring that <code>\/var<\/code> is mounted on its own partition enables the setting of more restrictive mount options. This helps protect system services such as daemons or other programs which use it. It is not uncommon for the <code>\/var<\/code> directory to contain world-writable directories installed by other software packages.<\/td>\n<td>Run the following command to determine if <code>\/var <\/code> is on its own partition or logical volume:<\/p>\n<pre>$ mount | grep \"on \/var \"<\/pre>\n<p>If <code>\/var <\/code> has its own partition or volume group, a line will be returned. If no line is returned, this is a finding.<\/td>\n<td>The <code>\/var<\/code> directory is used by daemons and other system services to store frequently-changing data. Ensure that <code>\/var<\/code> has its own partition or logical volume at installation time, or migrate it using LVM.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000003<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The system must use a separate file system for \/var\/log.<\/td>\n<td>Placing <code>\/var\/log<\/code> in its own partition enables better separation between log files and other files in <code>\/var\/<\/code>.<\/td>\n<td>Run the following command to determine if <code>\/var\/log <\/code> is on its own partition or logical volume:<\/p>\n<pre>$ mount | grep \"on \/var\/log \"<\/pre>\n<p>If <code>\/var\/log <\/code> has its own partition or volume group, a line will be returned. If no line is returned, this is a finding.<\/td>\n<td>System logs are stored in the <code>\/var\/log<\/code> directory. Ensure that it has its own partition or logical volume at installation time, or migrate it using LVM.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000004<\/td>\n<td>CCI-000137<\/td>\n<td>low<\/td>\n<td>The system must use a separate file system for the system audit data path.<\/td>\n<td>Placing <code>\/var\/log\/audit<\/code> in its own partition enables better separation between audit files and other files, and helps ensure that auditing cannot be halted due to the partition running out of space.<\/td>\n<td>Run the following command to determine if <code>\/var\/log\/audit <\/code> is on its own partition or logical volume:<\/p>\n<pre>$ mount | grep \"on \/var\/log\/audit \"<\/pre>\n<p>If <code>\/var\/log\/audit <\/code> has its own partition or volume group, a line will be returned. If no line is returned, this is a finding.<\/td>\n<td>Audit logs are stored in the <code>\/var\/log\/audit<\/code> directory. Ensure that it has its own partition or logical volume at installation time, or migrate it later using LVM. Make absolutely certain that it is large enough to store all audit logs that will be created by the auditing daemon.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000005<\/td>\n<td>CCI-000138<\/td>\n<td>medium<\/td>\n<td>The audit system must alert designated staff members when the audit storage volume approaches capacity.<\/td>\n<td>Notifying administrators of an impending disk space problem may allow them to take corrective action prior to any disruption.<\/td>\n<td>Inspect <code>\/etc\/audit\/auditd.conf<\/code> and locate the following line to determine if the system is configured to email the administrator when disk space is starting to run low: <code>$ sudo grep space_left_action \/etc\/audit\/auditd.conf<\/code><\/p>\n<pre>space_left_action<\/pre>\n<p>Acceptable values are <code>email<\/code>, <code>suspend<\/code>, <code>single<\/code>, and <code>halt<\/code>. If the system is not configured to send an email to the system administrator when disk space is starting to run low, this is a finding.<\/td>\n<td>The <code>auditd<\/code> service can be configured to take an action when disk space <i>starts<\/i> to run low. Edit the file <code>\/etc\/audit\/auditd.conf<\/code>. Modify the following line, substituting <i>ACTION<\/i> appropriately:<\/p>\n<pre>space_left_action = <i>ACTION<\/i><\/pre>\n<p>Possible values for <i>ACTION<\/i> are described in the <code>auditd.conf<\/code> man page. These include:<\/p>\n<ul>\n<li><code>ignore<\/code><\/li>\n<li><code>syslog<\/code><\/li>\n<li><code>email<\/code><\/li>\n<li><code>exec<\/code><\/li>\n<li><code>suspend<\/code><\/li>\n<li><code>single<\/code><\/li>\n<li><code>halt<\/code><\/li>\n<\/ul>\n<p>Set this to <code>email<\/code> (instead of the default, which is <code>suspend<\/code>) as it is more likely to get prompt attention. Acceptable values also include <code>suspend<\/code>, <code>single<\/code>, and <code>halt<\/code>.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000007<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The system must use a separate file system for user home directories.<\/td>\n<td>Ensuring that <code>\/home<\/code> is mounted on its own partition enables the setting of more restrictive mount options, and also helps ensure that users cannot trivially fill partitions used for log or audit data storage.<\/td>\n<td>Run the following command to determine if <code>\/home <\/code> is on its own partition or logical volume:<\/p>\n<pre>$ mount | grep \"on \/home \"<\/pre>\n<p>If <code>\/home <\/code> has its own partition or volume group, a line will be returned. If no line is returned, this is a finding.<\/td>\n<td>If user home directories will be stored locally, create a separate partition for <code>\/home<\/code> at installation time (or migrate it later using LVM). If <code>\/home<\/code> will be mounted from another system such as an NFS server, then creating a separate partition is not necessary at installation time, and the mountpoint can instead be configured later.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000008<\/td>\n<td>CCI-000352<\/td>\n<td>high<\/td>\n<td>Vendor-provided cryptographic certificates must be installed to verify the integrity of system software.<\/td>\n<td>The Red Hat GPG key is necessary to cryptographically verify packages are from Red Hat.<\/td>\n<td>To ensure that the GPG key is installed, run:<\/p>\n<pre>$ rpm -q --queryformat \"%{SUMMARY}\\n\" gpg-pubkey<\/pre>\n<p>The command should return the string below:<\/p>\n<pre>gpg(Red Hat, Inc. (release key 2)  &lt;security@redhat.com&gt;<\/pre>\n<p>If the Red Hat GPG Key is not installed, this is a finding.<\/td>\n<td>To ensure the system can cryptographically verify base software packages come from Red Hat (and to connect to the Red Hat Network to receive them), the Red Hat GPG key must properly be installed. To install the Red Hat GPG key, run:<\/p>\n<pre>$ sudo rhn_register<\/pre>\n<p>If the system is not connected to the Internet or an RHN Satellite, then install the Red Hat GPG key from trusted media such as the Red Hat installation CD-ROM or DVD. Assuming the disc is mounted in <code>\/media\/cdrom<\/code>, use the following command as the root user to import it into the keyring:<\/p>\n<pre>$ sudo rpm --import \/media\/cdrom\/RPM-GPG-KEY<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000009<\/td>\n<td>CCI-000382<\/td>\n<td>low<\/td>\n<td>The Red Hat Network Service (rhnsd) service must not be running, unless using RHN or an RHN Satellite.<\/td>\n<td>Although systems management and patching is extremely important to system security, management by a system outside the enterprise enclave is not desirable for some environments. However, if the system is being managed by RHN or RHN Satellite Server the <code>rhnsd<\/code> daemon can remain on.<\/td>\n<td>To check that the <code>rhnsd<\/code> service is disabled in system boot configuration, run the following command:<\/p>\n<pre># chkconfig <code>rhnsd<\/code> --list<\/pre>\n<p>Output should indicate the <code>rhnsd<\/code> service has either not been installed, or has been disabled at all runlevels, as shown in the example below:<\/p>\n<pre># chkconfig <code>rhnsd<\/code> --list\r\n<code>rhnsd<\/code>       0:off   1:off   2:off   3:off   4:off   5:off   6:off<\/pre>\n<p>Run the following command to verify <code>rhnsd<\/code> is disabled through current runtime configuration:<\/p>\n<pre># service rhnsd status<\/pre>\n<p>If the service is disabled the command will return the following output:<\/p>\n<pre>rhnsd is stopped<\/pre>\n<p>If the service is running, this is a finding.<\/td>\n<td>The Red Hat Network service automatically queries Red Hat Network servers to determine whether there are any actions that should be executed, such as package updates. This only occurs if the system was registered to an RHN server or satellite and managed as such. The <code>rhnsd<\/code> service can be disabled with the following command:<\/p>\n<pre># chkconfig rhnsd off<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000011<\/td>\n<td>CCI-001233<\/td>\n<td>medium<\/td>\n<td>System security patches and updates must be installed and up-to-date.<\/td>\n<td>Installing software updates is a fundamental mitigation against the exploitation of publicly-known vulnerabilities.<\/td>\n<td>If the system is joined to the Red Hat Network, a Red Hat Satellite Server, or a yum server which provides updates, invoking the following command will indicate if updates are available:<\/p>\n<pre>$ sudo yum check-update<\/pre>\n<p>If the system is not configured to update from one of these sources, run the following command to list when each package was last updated:<\/p>\n<pre>$ rpm -qa -last<\/pre>\n<p>Compare this to Red Hat Security Advisories (RHSA) listed at https:\/\/access.redhat.com\/security\/updates\/active\/ to determine if the system is missing applicable updates. If updates are not installed, this is a finding.<\/td>\n<td>If the system is joined to the Red Hat Network, a Red Hat Satellite Server, or a yum server, run the following command to install updates:<\/p>\n<pre>$ sudo yum update<\/pre>\n<p>If the system is not configured to use one of these sources, updates (in the form of RPM packages) can be manually downloaded from the Red Hat Network and installed using <code>rpm<\/code>.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000013<\/td>\n<td>CCI-000663<\/td>\n<td>medium<\/td>\n<td>The system package management tool must cryptographically verify the authenticity of system software packages during installation.<\/td>\n<td>Ensuring the validity of packages&#8217; cryptographic signatures prior to installation ensures the authenticity of the software and protects against malicious tampering.<\/td>\n<td>To determine whether <code>yum<\/code> is configured to use <code>gpgcheck<\/code>, inspect <code>\/etc\/yum.conf<\/code> and ensure the following appears in the <code>[main]<\/code> section:<\/p>\n<pre>gpgcheck=1<\/pre>\n<p>A value of <code>1<\/code> indicates that <code>gpgcheck<\/code> is enabled. Absence of a <code>gpgcheck<\/code> line or a setting of <code>0<\/code> indicates that it is disabled. If GPG checking is not enabled, this is a finding.<\/td>\n<td>The <code>gpgcheck<\/code> option controls whether RPM packages&#8217; signatures are always checked prior to installation. To configure yum to check package signatures before installing them, ensure the following line appears in <code>\/etc\/yum.conf<\/code> in the <code>[main]<\/code> section:<\/p>\n<pre>gpgcheck=1<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000015<\/td>\n<td>CCI-000663<\/td>\n<td>low<\/td>\n<td>The system package management tool must cryptographically verify the authenticity of all software packages during installation.<\/td>\n<td>Ensuring all packages&#8217; cryptographic signatures are valid prior to installation ensures the authenticity of the software and protects against malicious tampering.<\/td>\n<td>To determine whether <code>yum<\/code> has been configured to disable <code>gpgcheck<\/code> for any repos, inspect all files in <code>\/etc\/yum.repos.d<\/code> and ensure the following does not appear in any sections:<\/p>\n<pre>gpgcheck=0<\/pre>\n<p>A value of <code>0<\/code> indicates that <code>gpgcheck<\/code> has been disabled for that repo. If GPG checking is disabled, this is a finding.<\/td>\n<td>To ensure signature checking is not disabled for any repos, remove any lines from files in <code>\/etc\/yum.repos.d<\/code> of the form:<\/p>\n<pre>gpgcheck=0<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000016<\/td>\n<td>CCI-001069<\/td>\n<td>medium<\/td>\n<td>A file integrity tool must be installed.<\/td>\n<td>The AIDE package must be installed if it is to be available for integrity checking.<\/td>\n<td>Run the following command to determine if the <code>aide<\/code> package is installed:<\/p>\n<pre># rpm -q aide<\/pre>\n<p>If the package is not installed, this is a finding.<\/td>\n<td>Install the AIDE package with the command:<\/p>\n<pre>$ sudo yum install aide<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000017<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The system must use a Linux Security Module at boot time.<\/td>\n<td>Disabling a major host protection feature, such as SELinux, at boot time prevents it from confining system services at boot time. Further, it increases the chances that it will remain off during system operation.<\/td>\n<td>Inspect <code>\/etc\/grub.conf<\/code> for any instances of <code>selinux=0<\/code> in the kernel boot arguments. Presence of <code>selinux=0<\/code> indicates that SELinux is disabled at boot time. If SELinux is disabled at boot time, this is a finding.<\/td>\n<td>SELinux can be disabled at boot time by an argument in <code>\/etc\/grub.conf<\/code>. Remove any instances of <code>selinux=0<\/code> from the kernel arguments in that file to prevent SELinux from being disabled at boot.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000018<\/td>\n<td>CCI-001069<\/td>\n<td>medium<\/td>\n<td>A file integrity baseline must be created.<\/td>\n<td>For AIDE to be effective, an initial database of &#8220;known-good&#8221; information about files must be captured and it should be able to be verified against the installed files.<\/td>\n<td>To find the location of the AIDE databse file, run the following command:<\/p>\n<pre>$ sudo ls -l <i>DBDIR<\/i>\/<i>database_file_name<\/i><\/pre>\n<p>If there is no database file, this is a finding.<\/td>\n<td>Run the following command to generate a new database:<\/p>\n<pre>$ sudo \/usr\/sbin\/aide --init<\/pre>\n<p>By default, the database will be written to the file <code>\/var\/lib\/aide\/aide.db.new.gz<\/code>. Storing the database, the configuration file <code>\/etc\/aide.conf<\/code>, and the binary <code>\/usr\/sbin\/aide<\/code> (or hashes of these files), in a secure location (such as on read-only media) provides additional assurance about their integrity. The newly-generated database can be installed as follows:<\/p>\n<pre>$ sudo cp \/var\/lib\/aide\/aide.db.new.gz \/var\/lib\/aide\/aide.db.gz<\/pre>\n<p>To initiate a manual check, run the following command:<\/p>\n<pre>$ sudo \/usr\/sbin\/aide --check<\/pre>\n<p>If this check produces any unexpected output, investigate.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000019<\/td>\n<td>CCI-001436<\/td>\n<td>high<\/td>\n<td>There must be no .rhosts or hosts.equiv files on the system.<\/td>\n<td>Trust files are convenient, but when used in conjunction with the R-services, they can allow unauthenticated access to a system.<\/td>\n<td>The existence of the file <code>\/etc\/hosts.equiv<\/code> or a file named <code>.rhosts<\/code> inside a user home directory indicates the presence of an Rsh trust relationship. If these files exist, this is a finding.<\/td>\n<td>The files <code>\/etc\/hosts.equiv<\/code> and <code>~\/.rhosts<\/code> (in each user&#8217;s home directory) list remote hosts and users that are trusted by the local system when using the rshd daemon. To remove these files, run the following command to delete them from any location:<\/p>\n<pre>$ sudo rm \/etc\/hosts.equiv<\/pre>\n<pre>$ rm ~\/.rhosts<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000020<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The system must use a Linux Security Module configured to enforce limits on system services.<\/td>\n<td>Setting the SELinux state to enforcing ensures SELinux is able to confine potentially compromised processes to the security policy, which is designed to prevent them from causing damage to the system or further elevating their privileges.<\/td>\n<td>Check the file <code>\/etc\/selinux\/config<\/code> and ensure the following line appears:<\/p>\n<pre>SELINUX=enforcing<\/pre>\n<p>If SELINUX is not set to enforcing, this is a finding.<\/td>\n<td>The SELinux state should be set to <code><\/code> at system boot time. In the file <code>\/etc\/selinux\/config<\/code>, add or correct the following line to configure the system to boot into enforcing mode:<\/p>\n<pre>SELINUX=<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000023<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The system must use a Linux Security Module configured to limit the privileges of system services.<\/td>\n<td>Setting the SELinux policy to <code>targeted<\/code> or a more specialized policy ensures the system will confine processes that are likely to be targeted for exploitation, such as network or system services.<\/td>\n<td>Check the file <code>\/etc\/selinux\/config<\/code> and ensure the following line appears:<\/p>\n<pre>SELINUXTYPE=targeted<\/pre>\n<p>If it does not, this is a finding.<\/td>\n<td>The SELinux <code>targeted<\/code> policy is appropriate for general-purpose desktops and servers, as well as systems in many other roles. To configure the system to use this policy, add or correct the following line in <code>\/etc\/selinux\/config<\/code>:<\/p>\n<pre>SELINUXTYPE=<\/pre>\n<p>Other policies, such as <code>mls<\/code>, provide additional security labeling and greater confinement but are not compatible with many general-purpose use cases.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000025<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>All device files must be monitored by the system Linux Security Module.<\/td>\n<td>If a device file carries the SELinux type <code>unlabeled_t<\/code>, then SELinux cannot properly restrict access to the device file.<\/td>\n<td>To check for unlabeled device files, run the following command:<\/p>\n<pre>$ sudo ls -RZ \/dev | grep unlabeled_t<\/pre>\n<p>It should produce no output in a well-configured system. If there is output, this is a finding.<\/td>\n<td>Device files, which are used for communication with important system resources, should be labeled with proper SELinux types. If any device files carry the SELinux type <code>unlabeled_t<\/code>, investigate the cause and correct the file&#8217;s context.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000027<\/td>\n<td>CCI-000770<\/td>\n<td>medium<\/td>\n<td>The system must prevent the root account from logging in from virtual consoles.<\/td>\n<td>Preventing direct root login to virtual console devices helps ensure accountability for actions taken on the system using the root account.<\/td>\n<td>To check for virtual console entries which permit root login, run the following command:<\/p>\n<pre>$ sudo grep ^vc\/[0-9] \/etc\/securetty<\/pre>\n<p>If any output is returned, then root logins over virtual console devices is permitted. If root login over virtual console devices is permitted, this is a finding.<\/td>\n<td>To restrict root logins through the (deprecated) virtual console devices, ensure lines of this form do not appear in <code>\/etc\/securetty<\/code>:<\/p>\n<pre>vc\/1\r\nvc\/2\r\nvc\/3\r\nvc\/4<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000028<\/td>\n<td>CCI-000770<\/td>\n<td>low<\/td>\n<td>The system must prevent the root account from logging in from serial consoles.<\/td>\n<td>Preventing direct root login to serial port interfaces helps ensure accountability for actions taken on the systems using the root account.<\/td>\n<td>To check for serial port entries which permit root login, run the following command:<\/p>\n<pre>$ sudo grep ^ttyS\/[0-9] \/etc\/securetty<\/pre>\n<p>If any output is returned, then root login over serial ports is permitted. If root login over serial ports is permitted, this is a finding.<\/td>\n<td>To restrict root logins on serial ports, ensure lines of this form do not appear in <code>\/etc\/securetty<\/code>:<\/p>\n<pre>ttyS0\r\nttyS1<\/pre>\n<p><!-- TODO: discussion\/description of serial port --><\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000030<\/td>\n<td>CCI-000366<\/td>\n<td>high<\/td>\n<td>The system must not have accounts configured with blank or null passwords.<\/td>\n<td>If an account has an empty password, anyone could log in and run commands with the privileges of that account. Accounts with empty passwords should never be used in operational environments.<\/td>\n<td>To verify that null passwords cannot be used, run the following command:<\/p>\n<pre>$ grep nullok \/etc\/pam.d\/system-auth<\/pre>\n<p>If this produces any output, it may be possible to log into accounts with empty passwords. If NULL passwords can be used, this is a finding.<\/td>\n<td>If an account is configured for password authentication but does not have an assigned password, it may be possible to log into the account without authentication. Remove any instances of the <code>nullok<\/code> option in <code>\/etc\/pam.d\/system-auth<\/code> to prevent logins with empty passwords.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000031<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The \/etc\/passwd file must not contain password hashes.<\/td>\n<td>The hashes for all user account passwords should be stored in the file <code>\/etc\/shadow<\/code> and never in <code>\/etc\/passwd<\/code>, which is readable by all users.<\/td>\n<td>To check that no password hashes are stored in <code>\/etc\/passwd<\/code>, run the following command:<\/p>\n<pre>$ awk -F: '($2 != \"x\") {print}' \/etc\/passwd<\/pre>\n<p>If it produces any output, then a password hash is stored in <code>\/etc\/passwd<\/code>. If any stored hashes are found in \/etc\/passwd, this is a finding.<\/td>\n<td>If any password hashes are stored in <code>\/etc\/passwd<\/code> (in the second field, instead of an <code>x<\/code>), the cause of this misconfiguration should be investigated. The account should have its password reset and the hash should be properly stored, or the account should be deleted entirely.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000032<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The root account must be the only account having a UID of 0.<\/td>\n<td>An account has root authority if it has a UID of 0. Multiple accounts with a UID of 0 afford more opportunity for potential intruders to guess a password for a privileged account. Proper configuration of sudo is recommended to afford multiple system administrators access to root privileges in an accountable manner.<\/td>\n<td>To list all password file entries for accounts with UID 0, run the following command:<\/p>\n<pre>$ awk -F: '($3 == \"0\") {print}' \/etc\/passwd<\/pre>\n<p>This should print only one line, for the user root. If any account other than root has a UID of 0, this is a finding.<\/td>\n<td>If any account other than root has a UID of 0, this misconfiguration should be investigated and the accounts other than root should be removed or have their UID changed.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000033<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The \/etc\/shadow file must be owned by root.<\/td>\n<td>The <code>\/etc\/shadow<\/code> file contains the list of local system accounts and stores password hashes. Protection of this file is critical for system security. Failure to give ownership of this file to root provides the designated owner with access to sensitive information which could weaken the system security posture.<\/td>\n<td>To check the ownership of <code>\/etc\/shadow<\/code>, run the command:<\/p>\n<pre>$ ls -lL \/etc\/shadow<\/pre>\n<p>If properly configured, the output should indicate the following owner: <code>root<\/code> If it does not, this is a finding.<\/td>\n<td>To properly set the owner of <code>\/etc\/shadow<\/code>, run the command:<\/p>\n<pre xml:space=\"preserve\"># chown root\/etc\/shadow<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000034<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The \/etc\/shadow file must be group-owned by root.<\/td>\n<td>The <code>\/etc\/shadow<\/code> file stores password hashes. Protection of this file is critical for system security.<\/td>\n<td>To check the group ownership of <code>\/etc\/shadow<\/code>, run the command:<\/p>\n<pre>$ ls -lL \/etc\/shadow<\/pre>\n<p>If properly configured, the output should indicate the following group-owner. <code>root<\/code> If it does not, this is a finding.<\/td>\n<td>To properly set the group owner of <code>\/etc\/shadow<\/code>, run the command:<\/p>\n<pre xml:space=\"preserve\"># chgrp root\/etc\/shadow<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000035<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The \/etc\/shadow file must have mode 0000.<\/td>\n<td>The <code>\/etc\/shadow<\/code> file contains the list of local system accounts and stores password hashes. Protection of this file is critical for system security. Failure to give ownership of this file to root provides the designated owner with access to sensitive information which could weaken the system security posture.<\/td>\n<td>To check the permissions of <code>\/etc\/shadow<\/code>, run the command:<\/p>\n<pre>$ ls -l \/etc\/shadow<\/pre>\n<p>If properly configured, the output should indicate the following permissions: <code>----------<\/code> If it does not, this is a finding.<\/td>\n<td>To properly set the permissions of <code>\/etc\/shadow<\/code>, run the command:<\/p>\n<pre xml:space=\"preserve\"># chmod 0000\/etc\/shadow<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000036<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The \/etc\/gshadow file must be owned by root.<\/td>\n<td>The <code>\/etc\/gshadow<\/code> file contains group password hashes. Protection of this file is critical for system security.<\/td>\n<td>To check the ownership of <code>\/etc\/gshadow<\/code>, run the command:<\/p>\n<pre>$ ls -lL \/etc\/gshadow<\/pre>\n<p>If properly configured, the output should indicate the following owner: <code>root<\/code> If it does not, this is a finding.<\/td>\n<td>To properly set the owner of <code>\/etc\/gshadow<\/code>, run the command:<\/p>\n<pre xml:space=\"preserve\"># chown root\/etc\/gshadow<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000037<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The \/etc\/gshadow file must be group-owned by root.<\/td>\n<td>The <code>\/etc\/gshadow<\/code> file contains group password hashes. Protection of this file is critical for system security.<\/td>\n<td>To check the group ownership of <code>\/etc\/gshadow<\/code>, run the command:<\/p>\n<pre>$ ls -lL \/etc\/gshadow<\/pre>\n<p>If properly configured, the output should indicate the following group-owner. <code>root<\/code> If it does not, this is a finding.<\/td>\n<td>To properly set the group owner of <code>\/etc\/gshadow<\/code>, run the command:<\/p>\n<pre xml:space=\"preserve\"># chgrp root\/etc\/gshadow<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000038<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The \/etc\/gshadow file must have mode 0000.<\/td>\n<td>The <code>\/etc\/gshadow<\/code> file contains group password hashes. Protection of this file is critical for system security.<\/td>\n<td>To check the permissions of <code>\/etc\/gshadow<\/code>, run the command:<\/p>\n<pre>$ ls -l \/etc\/gshadow<\/pre>\n<p>If properly configured, the output should indicate the following permissions: <code>----------<\/code> If it does not, this is a finding.<\/td>\n<td>To properly set the permissions of <code>\/etc\/gshadow<\/code>, run the command:<\/p>\n<pre xml:space=\"preserve\"># chmod 0000\/etc\/gshadow<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000039<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The \/etc\/passwd file must be owned by root.<\/td>\n<td>The <code>\/etc\/passwd<\/code> file contains information about the users that are configured on the system. Protection of this file is critical for system security.<\/td>\n<td>To check the ownership of <code>\/etc\/passwd<\/code>, run the command:<\/p>\n<pre>$ ls -lL \/etc\/passwd<\/pre>\n<p>If properly configured, the output should indicate the following owner: <code>root<\/code> If it does not, this is a finding.<\/td>\n<td>To properly set the owner of <code>\/etc\/passwd<\/code>, run the command:<\/p>\n<pre xml:space=\"preserve\"># chown root\/etc\/passwd<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000040<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The \/etc\/passwd file must be group-owned by root.<\/td>\n<td>The <code>\/etc\/passwd<\/code> file contains information about the users that are configured on the system. Protection of this file is critical for system security.<\/td>\n<td>To check the group ownership of <code>\/etc\/passwd<\/code>, run the command:<\/p>\n<pre>$ ls -lL \/etc\/passwd<\/pre>\n<p>If properly configured, the output should indicate the following group-owner. <code>root<\/code> If it does not, this is a finding.<\/td>\n<td>To properly set the group owner of <code>\/etc\/passwd<\/code>, run the command:<\/p>\n<pre xml:space=\"preserve\"># chgrp root\/etc\/passwd<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000041<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The \/etc\/passwd file must have mode 0644 or less permissive.<\/td>\n<td>If the <code>\/etc\/passwd<\/code> file is writable by a group-owner or the world the risk of its compromise is increased. The file contains the list of accounts on the system and associated information, and protection of this file is critical for system security.<\/td>\n<td>To check the permissions of <code>\/etc\/passwd<\/code>, run the command:<\/p>\n<pre>$ ls -l \/etc\/passwd<\/pre>\n<p>If properly configured, the output should indicate the following permissions: <code>-rw-r--r--<\/code> If it does not, this is a finding.<\/td>\n<td>To properly set the permissions of <code>\/etc\/passwd<\/code>, run the command:<\/p>\n<pre xml:space=\"preserve\"># chmod 0644\/etc\/passwd<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000042<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The \/etc\/group file must be owned by root.<\/td>\n<td>The <code>\/etc\/group<\/code> file contains information regarding groups that are configured on the system. Protection of this file is important for system security.<\/td>\n<td>To check the ownership of <code>\/etc\/group<\/code>, run the command:<\/p>\n<pre>$ ls -lL \/etc\/group<\/pre>\n<p>If properly configured, the output should indicate the following owner: <code>root<\/code> If it does not, this is a finding.<\/td>\n<td>To properly set the owner of <code>\/etc\/group<\/code>, run the command:<\/p>\n<pre xml:space=\"preserve\"># chown root\/etc\/group<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000043<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The \/etc\/group file must be group-owned by root.<\/td>\n<td>The <code>\/etc\/group<\/code> file contains information regarding groups that are configured on the system. Protection of this file is important for system security.<\/td>\n<td>To check the group ownership of <code>\/etc\/group<\/code>, run the command:<\/p>\n<pre>$ ls -lL \/etc\/group<\/pre>\n<p>If properly configured, the output should indicate the following group-owner. <code>root<\/code> If it does not, this is a finding.<\/td>\n<td>To properly set the group owner of <code>\/etc\/group<\/code>, run the command:<\/p>\n<pre xml:space=\"preserve\"># chgrp root\/etc\/group<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000044<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The \/etc\/group file must have mode 0644 or less permissive.<\/td>\n<td>The <code>\/etc\/group<\/code> file contains information regarding groups that are configured on the system. Protection of this file is important for system security.<\/td>\n<td>To check the permissions of <code>\/etc\/group<\/code>, run the command:<\/p>\n<pre>$ ls -l \/etc\/group<\/pre>\n<p>If properly configured, the output should indicate the following permissions: <code>-rw-r--r--<\/code> If it does not, this is a finding.<\/td>\n<td>To properly set the permissions of <code>\/etc\/group<\/code>, run the command:<\/p>\n<pre xml:space=\"preserve\"># chmod 644\/etc\/group<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000045<\/td>\n<td>CCI-001499<\/td>\n<td>medium<\/td>\n<td>Library files must have mode 0755 or less permissive.<\/td>\n<td>Files from shared library directories are loaded into the address space of processes (including privileged ones) or of the kernel itself at runtime. Restrictive permissions are necessary to protect the integrity of the system.<\/td>\n<td>Shared libraries are stored in the following directories:<\/p>\n<pre>\/lib\r\n\/lib64\r\n\/usr\/lib\r\n\/usr\/lib64\r\n<\/pre>\n<p>To find shared libraries that are group-writable or world-writable, run the following command for each directory <i>DIR<\/i> which contains shared libraries:<\/p>\n<pre>$ sudo find -L <i>DIR<\/i> -perm \/022 -type f<\/pre>\n<p>If any of these files are group-writable or world-writable, this is a finding.<\/td>\n<td>System-wide shared library files, which are linked to executables during process load time or run time, are stored in the following directories by default:<\/p>\n<pre>\/lib\r\n\/lib64\r\n\/usr\/lib\r\n\/usr\/lib64\r\n<\/pre>\n<p>Kernel modules, which can be added to the kernel during runtime, are stored in <code>\/lib\/modules<\/code>. All files in these directories should not be group-writable or world-writable. If any file in these directories is found to be group-writable or world-writable, correct its permission with the following command:<\/p>\n<pre>$ sudo chmod go-w <i>FILE<\/i><\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000046<\/td>\n<td>CCI-001499<\/td>\n<td>medium<\/td>\n<td>Library files must be owned by root.<\/td>\n<td>Files from shared library directories are loaded into the address space of processes (including privileged ones) or of the kernel itself at runtime. Proper ownership is necessary to protect the integrity of the system.<\/td>\n<td>Shared libraries are stored in the following directories:<\/p>\n<pre>\/lib\r\n\/lib64\r\n\/usr\/lib\r\n\/usr\/lib64\r\n<\/pre>\n<p>For each of these directories, run the following command to find files not owned by root:<\/p>\n<pre>$ sudo find -L <i>$DIR<\/i> \\! -user root -exec chown root {} \\;<\/pre>\n<p>If any of these files are not owned by root, this is a finding.<\/td>\n<td>System-wide shared library files, which are linked to executables during process load time or run time, are stored in the following directories by default:<\/p>\n<pre>\/lib\r\n\/lib64\r\n\/usr\/lib\r\n\/usr\/lib64\r\n<\/pre>\n<p>Kernel modules, which can be added to the kernel during runtime, are also stored in <code>\/lib\/modules<\/code>. All files in these directories should be owned by the <code>root<\/code> user. If the directory, or any file in these directories, is found to be owned by a user other than root correct its ownership with the following command:<\/p>\n<pre>$ sudo chown root <i>FILE<\/i><\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000047<\/td>\n<td>CCI-001499<\/td>\n<td>medium<\/td>\n<td>All system command files must have mode 0755 or less permissive.<\/td>\n<td>System binaries are executed by privileged users, as well as system services, and restrictive permissions are necessary to ensure execution of these programs cannot be co-opted.<\/td>\n<td>System executables are stored in the following directories by default:<\/p>\n<pre>\/bin\r\n\/usr\/bin\r\n\/usr\/local\/bin\r\n\/sbin\r\n\/usr\/sbin\r\n\/usr\/local\/sbin<\/pre>\n<p>To find system executables that are group-writable or world-writable, run the following command for each directory <i>DIR<\/i> which contains system executables:<\/p>\n<pre>$ sudo find -L <i>DIR<\/i> -perm \/022 -type f<\/pre>\n<p>If any system executables are found to be group or world writable, this is a finding.<\/td>\n<td>System executables are stored in the following directories by default:<\/p>\n<pre>\/bin\r\n\/usr\/bin\r\n\/usr\/local\/bin\r\n\/sbin\r\n\/usr\/sbin\r\n\/usr\/local\/sbin<\/pre>\n<p>All files in these directories should not be group-writable or world-writable. If any file <i>FILE<\/i> in these directories is found to be group-writable or world-writable, correct its permission with the following command:<\/p>\n<pre>$ sudo chmod go-w <i>FILE<\/i><\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000048<\/td>\n<td>CCI-001499<\/td>\n<td>medium<\/td>\n<td>All system command files must be owned by root.<\/td>\n<td>System binaries are executed by privileged users as well as system services, and restrictive permissions are necessary to ensure that their execution of these programs cannot be co-opted.<\/td>\n<td>System executables are stored in the following directories by default:<\/p>\n<pre>\/bin\r\n\/usr\/bin\r\n\/usr\/local\/bin\r\n\/sbin\r\n\/usr\/sbin\r\n\/usr\/local\/sbin<\/pre>\n<p>To find system executables that are not owned by <code>root<\/code>, run the following command for each directory <i>DIR<\/i> which contains system executables:<\/p>\n<pre>$ sudo find <i>DIR\/<\/i> \\! -user root<\/pre>\n<p>If any system executables are found to not be owned by root, this is a finding.<\/td>\n<td>System executables are stored in the following directories by default:<\/p>\n<pre>\/bin\r\n\/usr\/bin\r\n\/usr\/local\/bin\r\n\/sbin\r\n\/usr\/sbin\r\n\/usr\/local\/sbin<\/pre>\n<p>All files in these directories should be owned by the <code>root<\/code> user. If any file <i>FILE<\/i> in these directories is found to be owned by a user other than root, correct its ownership with the following command:<\/p>\n<pre>$ sudo chown root <i>FILE<\/i><\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000050<\/td>\n<td>CCI-000205<\/td>\n<td>medium<\/td>\n<td>The system must require passwords to contain a minimum of 14 characters.<\/td>\n<td>Requiring a minimum password length makes password cracking attacks more difficult by ensuring a larger search space. However, any security benefit from an onerous requirement must be carefully weighed against usability problems, support costs, or counterproductive behavior that may result.<\/td>\n<td>To check the minimum password length, run the command:<\/p>\n<pre>$ grep PASS_MIN_LEN \/etc\/login.defs<\/pre>\n<p>The DoD requirement is <code>14<\/code>. If it is not set to the required value, this is a finding.<\/td>\n<td>To specify password length requirements for new accounts, edit the file <code>\/etc\/login.defs<\/code> and add or correct the following lines:<\/p>\n<pre>PASS_MIN_LEN<\/pre>\n<p>The DoD requirement is <code>14<\/code>. The FISMA requirement is <code>12<\/code>. If a program consults <code>\/etc\/login.defs<\/code> and also another PAM module (such as <code>pam_cracklib<\/code>) during a password change operation, then the most restrictive must be satisfied. See PAM section for more information about enforcing password quality requirements.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000051<\/td>\n<td>CCI-000198<\/td>\n<td>medium<\/td>\n<td>Users must not be able to change passwords more than once every 24 hours.<\/td>\n<td>Setting the minimum password age protects against users cycling back to a favorite password after satisfying the password reuse requirement.<\/td>\n<td>To check the minimum password age, run the command:<\/p>\n<pre>$ grep PASS_MIN_DAYS \/etc\/login.defs<\/pre>\n<p>The DoD and FISMA requirement is 1. If it is not set to the required value, this is a finding.<\/td>\n<td>To specify password minimum age for new accounts, edit the file <code>\/etc\/login.defs<\/code> and add or correct the following line:<\/p>\n<pre>PASS_MIN_DAYS <i><\/i><\/pre>\n<p>A value of 1 day is considered for sufficient for many environments. The DoD requirement is 1.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000053<\/td>\n<td>CCI-000199<\/td>\n<td>medium<\/td>\n<td>User passwords must be changed at least every 60 days.<\/td>\n<td>Setting the password maximum age ensures users are required to periodically change their passwords. This could possibly decrease the utility of a stolen password. Requiring shorter password lifetimes increases the risk of users writing down the password in a convenient location subject to physical compromise.<\/td>\n<td>To check the maximum password age, run the command:<\/p>\n<pre>$ grep PASS_MAX_DAYS \/etc\/login.defs<\/pre>\n<p>The DoD and FISMA requirement is 60. A value of 180 days is sufficient for many environments. If it is not set to the required value, this is a finding.<\/td>\n<td>To specify password maximum age for new accounts, edit the file <code>\/etc\/login.defs<\/code> and add or correct the following line:<\/p>\n<pre>PASS_MAX_DAYS <i><\/i><\/pre>\n<p>A value of 180 days is sufficient for many environments. The DoD requirement is 60.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000054<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>Users must be warned 7 days in advance of password expiration.<\/td>\n<td>Setting the password warning age enables users to make the change at a practical time.<\/td>\n<td>To check the password warning age, run the command:<\/p>\n<pre>$ grep PASS_WARN_AGE \/etc\/login.defs<\/pre>\n<p>The DoD requirement is 7. If it is not set to the required value, this is a finding.<\/td>\n<td>To specify how many days prior to password expiration that a warning will be issued to users, edit the file <code>\/etc\/login.defs<\/code> and add or correct the following line:<\/p>\n<pre>PASS_WARN_AGE <i><\/i><\/pre>\n<p>The DoD requirement is 7.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000056<\/td>\n<td>CCI-000194<\/td>\n<td>low<\/td>\n<td>The system must require passwords to contain at least one numeric character.<\/td>\n<td>Requiring digits makes password guessing attacks more difficult by ensuring a larger search space.<\/td>\n<td>To check how many digits are required in a password, run the following command:<\/p>\n<pre>$ grep pam_cracklib \/etc\/pam.d\/system-auth<\/pre>\n<p>The <code>dcredit<\/code> parameter (as a negative number) will indicate how many digits are required. The DoD requires at least one digit in a password. This would appear as <code>dcredit=-1<\/code>. If dcredit is not found or not set to the required value, this is a finding.<\/td>\n<td>The pam_cracklib module&#8217;s <code>dcredit<\/code> parameter controls requirements for usage of digits in a password. When set to a negative number, any password will be required to contain that many digits. When set to a positive number, pam_cracklib will grant +1 additional length credit for each digit. Add <code>dcredit=-1<\/code> after pam_cracklib.so to require use of a digit in passwords.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000057<\/td>\n<td>CCI-000192<\/td>\n<td>low<\/td>\n<td>The system must require passwords to contain at least one uppercase alphabetic character.<\/td>\n<td>Requiring a minimum number of uppercase characters makes password guessing attacks more difficult by ensuring a larger search space.<\/td>\n<td>To check how many uppercase characters are required in a password, run the following command:<\/p>\n<pre>$ grep pam_cracklib \/etc\/pam.d\/system-auth<\/pre>\n<p>The <code>ucredit<\/code> parameter (as a negative number) will indicate how many uppercase characters are required. The DoD and FISMA require at least one uppercase character in a password. This would appear as <code>ucredit=-1<\/code>. If ucredit is not found or not set to the required value, this is a finding.<\/td>\n<td>The pam_cracklib module&#8217;s <code>ucredit=<\/code> parameter controls requirements for usage of uppercase letters in a password. When set to a negative number, any password will be required to contain that many uppercase characters. When set to a positive number, pam_cracklib will grant +1 additional length credit for each uppercase character. Add <code>ucredit=-1<\/code> after pam_cracklib.so to require use of an upper case character in passwords.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000058<\/td>\n<td>CCI-001619<\/td>\n<td>low<\/td>\n<td>The system must require passwords to contain at least one special character.<\/td>\n<td>Requiring a minimum number of special characters makes password guessing attacks more difficult by ensuring a larger search space.<\/td>\n<td>To check how many special characters are required in a password, run the following command:<\/p>\n<pre>$ grep pam_cracklib \/etc\/pam.d\/system-auth<\/pre>\n<p>The <code>ocredit<\/code> parameter (as a negative number) will indicate how many special characters are required. The DoD and FISMA require at least one special character in a password. This would appear as <code>ocredit=-1<\/code>. If ocredit is not found or not set to the required value, this is a finding.<\/td>\n<td>The pam_cracklib module&#8217;s <code>ocredit=<\/code> parameter controls requirements for usage of special (or &#8220;other&#8221;) characters in a password. When set to a negative number, any password will be required to contain that many special characters. When set to a positive number, pam_cracklib will grant +1 additional length credit for each special character. Add <code>ocredit=<\/code> after pam_cracklib.so to require use of a special character in passwords.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000059<\/td>\n<td>CCI-000193<\/td>\n<td>low<\/td>\n<td>The system must require passwords to contain at least one lowercase alphabetic character.<\/td>\n<td>Requiring a minimum number of lowercase characters makes password guessing attacks more difficult by ensuring a larger search space.<\/td>\n<td>To check how many lowercase characters are required in a password, run the following command:<\/p>\n<pre>$ grep pam_cracklib \/etc\/pam.d\/system-auth<\/pre>\n<p>The <code>lcredit<\/code> parameter (as a negative number) will indicate how many special characters are required. The DoD and FISMA require at least one lowercase character in a password. This would appear as <code>lcredit=-1<\/code>. If lcredit is not found or not set to the required value, this is a finding.<\/td>\n<td>The pam_cracklib module&#8217;s <code>lcredit=<\/code> parameter controls requirements for usage of lowercase letters in a password. When set to a negative number, any password will be required to contain that many lowercase characters. When set to a positive number, pam_cracklib will grant +1 additional length credit for each lowercase character. Add <code>lcredit=-1<\/code> after pam_cracklib.so to require use of a lowercase character in passwords.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000060<\/td>\n<td>CCI-000195<\/td>\n<td>low<\/td>\n<td>The system must require at least four characters be changed between the old and new passwords during a password change.<\/td>\n<td>Requiring a minimum number of different characters during password changes ensures that newly changed passwords should not resemble previously compromised ones. Note that passwords which are changed on compromised systems will still be compromised, however.<\/td>\n<td>To check how many characters must differ during a password change, run the following command:<\/p>\n<pre>$ grep pam_cracklib \/etc\/pam.d\/system-auth<\/pre>\n<p>The <code>difok<\/code> parameter will indicate how many characters must differ. The DoD requires four characters differ during a password change. This would appear as <code>difok=4<\/code>. If difok is not found or not set to the required value, this is a finding.<\/td>\n<td>The pam_cracklib module&#8217;s <code>difok<\/code> parameter controls requirements for usage of different characters during a password change. Add <code>difok=<i><\/i><\/code> after pam_cracklib.so to require differing characters when changing passwords. The DoD requirement is <code>4<\/code>.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000061<\/td>\n<td>CCI-000044<\/td>\n<td>medium<\/td>\n<td>The system must disable accounts after three consecutive unsuccessful login attempts.<\/td>\n<td>Locking out user accounts after a number of incorrect attempts prevents direct password guessing attacks.<\/td>\n<td>To ensure the failed password attempt policy is configured correctly, run the following command:<\/p>\n<pre>$ grep pam_faillock \/etc\/pam.d\/system-auth<\/pre>\n<p>The output should show <code>deny=3<\/code>. If that is not the case, this is a finding.<\/td>\n<td>To configure the system to lock out accounts after a number of incorrect login attempts using <code>pam_faillock.so<\/code>:<\/p>\n<p>Add the following lines immediately below the <code>pam_unix.so<\/code> statement in <code>AUTH<\/code> section of both <code>\/etc\/pam.d\/system-auth<\/code> and \/etc\/pam.d\/password-auth:<\/p>\n<pre>auth [default=die] pam_faillock.so authfail deny= unlock_time=604800 fail_interval=900<\/pre>\n<pre>auth required pam_faillock.so authsucc deny= unlock_time=604800 fail_interval=900<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000062<\/td>\n<td>CCI-000803<\/td>\n<td>medium<\/td>\n<td>The system must use a FIPS 140-2 approved cryptographic hashing algorithm for generating account password hashes (system-auth).<\/td>\n<td>Using a stronger hashing algorithm makes password cracking attacks more difficult.<\/td>\n<td>Inspect the <code>password<\/code> section of <code>\/etc\/pam.d\/system-auth<\/code> and ensure that the <code>pam_unix.so<\/code> module includes the argument <code>sha512<\/code>:<\/p>\n<pre>$ grep sha512 \/etc\/pam.d\/system-auth<\/pre>\n<p>If it does not, this is a finding.<\/td>\n<td>In <code>\/etc\/pam.d\/system-auth<\/code>, the <code>password<\/code> section of the file controls which PAM modules execute during a password change. Set the <code>pam_unix.so<\/code> module in the <code>password<\/code> section to include the argument <code>sha512<\/code>, as shown below:<\/p>\n<pre>password    sufficient    pam_unix.so sha512 <i>other arguments...<\/i><\/pre>\n<p>This will help ensure when local users change their passwords, hashes for the new passwords will be generated using the SHA-512 algorithm. This is the default.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000063<\/td>\n<td>CCI-000803<\/td>\n<td>medium<\/td>\n<td>The system must use a FIPS 140-2 approved cryptographic hashing algorithm for generating account password hashes (login.defs).<\/td>\n<td>Using a stronger hashing algorithm makes password cracking attacks more difficult.<\/td>\n<td>Inspect <code>\/etc\/login.defs<\/code> and ensure the following line appears:<\/p>\n<pre>ENCRYPT_METHOD SHA512<\/pre>\n<p>If it does not, this is a finding.<\/td>\n<td>In <code>\/etc\/login.defs<\/code>, add or correct the following line to ensure the system will use SHA-512 as the hashing algorithm:<\/p>\n<pre>ENCRYPT_METHOD SHA512<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000064<\/td>\n<td>CCI-000803<\/td>\n<td>medium<\/td>\n<td>The system must use a FIPS 140-2 approved cryptographic hashing algorithm for generating account password hashes (libuser.conf).<\/td>\n<td>Using a stronger hashing algorithm makes password cracking attacks more difficult.<\/td>\n<td>Inspect <code>\/etc\/libuser.conf<\/code> and ensure the following line appears in the <code>[default]<\/code> section:<\/p>\n<pre>crypt_style = sha512<\/pre>\n<p>If it does not, this is a finding.<\/td>\n<td>In <code>\/etc\/libuser.conf<\/code>, add or correct the following line in its <code>[defaults]<\/code> section to ensure the system will use the SHA-512 algorithm for password hashing:<\/p>\n<pre>crypt_style = sha512<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000065<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The system boot loader configuration file(s) must be owned by root.<\/td>\n<td>Only root should be able to modify important boot parameters.<\/td>\n<td>To check the ownership of <code>\/etc\/grub.conf<\/code>, run the command:<\/p>\n<pre>$ ls -lL \/etc\/grub.conf<\/pre>\n<p>If properly configured, the output should indicate the following owner: <code>root<\/code> If it does not, this is a finding.<\/td>\n<td>The file <code>\/etc\/grub.conf<\/code> should be owned by the <code>root<\/code> user to prevent destruction or modification of the file. To properly set the owner of <code>\/etc\/grub.conf<\/code>, run the command:<\/p>\n<pre xml:space=\"preserve\"># chown root\/etc\/grub.conf<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000066<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The system boot loader configuration file(s) must be group-owned by root.<\/td>\n<td>The <code>root<\/code> group is a highly-privileged group. Furthermore, the group-owner of this file should not have any access privileges anyway.<\/td>\n<td>To check the group ownership of <code>\/etc\/grub.conf<\/code>, run the command:<\/p>\n<pre>$ ls -lL \/etc\/grub.conf<\/pre>\n<p>If properly configured, the output should indicate the following group-owner. <code>root<\/code> If it does not, this is a finding.<\/td>\n<td>The file <code>\/etc\/grub.conf<\/code> should be group-owned by the <code>root<\/code> group to prevent destruction or modification of the file. To properly set the group owner of <code>\/etc\/grub.conf<\/code>, run the command:<\/p>\n<pre xml:space=\"preserve\"># chgrp root\/etc\/grub.conf<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000067<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The system boot loader configuration file(s) must have mode 0600 or less permissive.<\/td>\n<td>Proper permissions ensure that only the root user can modify important boot parameters.<\/td>\n<td>To check the permissions of \/etc\/grub.conf, run the command:<\/p>\n<pre>$ sudo ls -lL \/etc\/grub.conf<\/pre>\n<p>If properly configured, the output should indicate the following permissions: <code>-rw-------<\/code> If it does not, this is a finding.<\/td>\n<td>File permissions for <code>\/boot\/grub\/grub.conf<\/code> should be set to 600, which is the default. To properly set the permissions of <code>\/boot\/grub\/grub.conf<\/code>, run the command:<\/p>\n<pre xml:space=\"preserve\"># chmod 600\/boot\/grub\/grub.conf<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000068<\/td>\n<td>CCI-000213<\/td>\n<td>medium<\/td>\n<td>The system boot loader must require authentication.<\/td>\n<td>Password protection on the boot loader configuration ensures users with physical access cannot trivially alter important bootloader settings. These include which kernel to use, and whether to enter single-user mode.<\/td>\n<td>To verify the boot loader password has been set and encrypted, run the following command:<\/p>\n<pre>$ sudo grep password \/etc\/grub.conf<\/pre>\n<p>The output should show the following:<\/p>\n<pre>password --encrypted <b>password-hash<\/b><\/pre>\n<p>If it does not, this is a finding.<\/td>\n<td>The grub boot loader should have password protection enabled to protect boot-time settings. To do so, select a password and then generate a hash from it by running the following command:<\/p>\n<pre>$ grub-crypt --sha-512<\/pre>\n<p>When prompted to enter a password, insert the following line into <code>\/etc\/grub.conf<\/code> immediately after the header comments. (Use the output from <code>grub-crypt<\/code> as the value of <b>password-hash<\/b>):<\/p>\n<pre>password --encrypted <b>password-hash<\/b><\/pre>\n<p>NOTE: To meet FISMA Moderate, the bootloader password MUST differ from the root password.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000069<\/td>\n<td>CCI-000213<\/td>\n<td>medium<\/td>\n<td>The system must require authentication upon booting into single-user and maintenance modes.<\/td>\n<td>This prevents attackers with physical access from trivially bypassing security on the machine and gaining root access. Such accesses are further prevented by configuring the bootloader password.<\/td>\n<td>To check if authentication is required for single-user mode, run the following command:<\/p>\n<pre>$ grep SINGLE \/etc\/sysconfig\/init<\/pre>\n<p>The output should be the following:<\/p>\n<pre>SINGLE=\/sbin\/sulogin<\/pre>\n<p>If the output is different, this is a finding.<\/td>\n<td>Single-user mode is intended as a system recovery method, providing a single user root access to the system by providing a boot option at startup. By default, no authentication is performed if single-user mode is selected.<\/p>\n<p>To require entry of the root password even if the system is started in single-user mode, add or correct the following line in the file <code>\/etc\/sysconfig\/init<\/code>:<\/p>\n<pre>SINGLE=\/sbin\/sulogin<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000070<\/td>\n<td>CCI-000213<\/td>\n<td>medium<\/td>\n<td>The system must not permit interactive boot.<\/td>\n<td>Using interactive boot, the console user could disable auditing, firewalls, or other services, weakening system security.<\/td>\n<td>To check whether interactive boot is disabled, run the following command:<\/p>\n<pre>$ grep PROMPT \/etc\/sysconfig\/init<\/pre>\n<p>If interactive boot is disabled, the output will show:<\/p>\n<pre>PROMPT=no<\/pre>\n<p>If it does not, this is a finding.<\/td>\n<td>To disable the ability for users to perform interactive startups, edit the file <code>\/etc\/sysconfig\/init<\/code>. Add or correct the line:<\/p>\n<pre>PROMPT=no<\/pre>\n<p>The <code>PROMPT<\/code> option allows the console user to perform an interactive system startup, in which it is possible to select the set of services which are started on boot.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000071<\/td>\n<td>CCI-000058<\/td>\n<td>low<\/td>\n<td>The system must allow locking of the console screen.<\/td>\n<td>Installing <code>screen<\/code> ensures a console locking capability is available for users who may need to suspend console logins.<\/td>\n<td>Run the following command to determine if the <code>screen<\/code> package is installed:<\/p>\n<pre># rpm -q screen<\/pre>\n<p>If the package is not installed, this is a finding.<\/td>\n<td>To enable console screen locking, install the <code>screen<\/code> package:<\/p>\n<pre>$ sudo yum install screen<\/pre>\n<p>Instruct users to begin new terminal sessions with the following command:<\/p>\n<pre>$ screen<\/pre>\n<p>The console can now be locked with the following key combination:<\/p>\n<pre>ctrl+a x<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000073<\/td>\n<td>CCI-NaN<\/td>\n<td>medium<\/td>\n<td>The Department of Defense (DoD) login banner must be displayed immediately prior to, or as part of, console login prompts.<\/td>\n<td>An appropriate warning message reinforces policy awareness during the logon process and facilitates possible legal action against attackers.<\/td>\n<td>To check if the system login banner is compliant, run the following command:<\/p>\n<pre>$ cat \/etc\/issue<\/pre>\n<p>If it does not display the required banner, this is a finding.<\/td>\n<td>To configure the system login banner:<\/p>\n<p>Edit <code>\/etc\/issue<\/code>. Replace the default text with a message compliant with the local site policy or a legal disclaimer. The DoD required text is either:<\/p>\n<p><code>You are accessing a U.S. Government (USG) Information System (IS) that is provided for USG-authorized use only. By using this IS (which includes any device attached to this IS), you consent to the following conditions:<br \/>\n-The USG routinely intercepts and monitors communications on this IS for purposes including, but not limited to, penetration testing, COMSEC monitoring, network operations and defense, personnel misconduct (PM), law enforcement (LE), and counterintelligence (CI) investigations.<br \/>\n-At any time, the USG may inspect and seize data stored on this IS.<br \/>\n-Communications using, or data stored on, this IS are not private, are subject to routine monitoring, interception, and search, and may be disclosed or used for any USG-authorized purpose.<br \/>\n-This IS includes security measures (e.g., authentication and access controls) to protect USG interests -- not for your personal benefit or privacy.<br \/>\n-Notwithstanding the above, using this IS does not constitute consent to PM, LE or CI investigative searching or monitoring of the content of privileged communications, or work product, related to personal representation or services by attorneys, psychotherapists, or clergy, and their assistants. Such communications and work product are private and confidential. See User Agreement for details.<\/code><\/p>\n<p>OR:<\/p>\n<p><code>I've read &amp; consent to terms in IS user agreem't.<\/code><\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000078<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The system must implement virtual address space randomization.<\/td>\n<td>Address space layout randomization (ASLR) makes it more difficult for an attacker to predict the location of attack code they have introduced into a process&#8217;s address space during an attempt at exploitation. Additionally, ASLR makes it more difficult for an attacker to know the location of existing code in order to re-purpose it using return oriented programming (ROP) techniques.<\/td>\n<td>The status of the <code>kernel.randomize_va_space<\/code> kernel parameter can be queried by running the following command:<\/p>\n<pre xml:space=\"preserve\">$ sysctl kernel.randomize_va_space<\/pre>\n<p>The output of the command should indicate a value of <code>2<\/code>. If this value is not the default value, investigate how it could have been adjusted at runtime, and verify it is not set improperly in <code>\/etc\/sysctl.conf<\/code>. If the correct value is not returned, this is a finding.<\/td>\n<td>To set the runtime status of the <code>kernel.randomize_va_space<\/code> kernel parameter, run the following command:<\/p>\n<pre xml:space=\"preserve\"># sysctl -w kernel.randomize_va_space=2<\/pre>\n<p>If this is not the system&#8217;s default value, add the following line to <code>\/etc\/sysctl.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">kernel.randomize_va_space = 2<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000079<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The system must limit the ability of processes to have simultaneous write and execute access to memory.<\/td>\n<td>ExecShield uses the segmentation feature on all x86 systems to prevent execution in memory higher than a certain address. It writes an address as a limit in the code segment descriptor, to control where code can be executed, on a per-process basis. When the kernel places a process&#8217;s memory regions such as the stack and heap higher than this address, the hardware prevents execution in that address range.<\/td>\n<td>The status of the <code>kernel.exec-shield<\/code> kernel parameter can be queried by running the following command:<\/p>\n<pre xml:space=\"preserve\">$ sysctl kernel.exec-shield<\/pre>\n<p>The output of the command should indicate a value of <code>1<\/code>. If this value is not the default value, investigate how it could have been adjusted at runtime, and verify it is not set improperly in <code>\/etc\/sysctl.conf<\/code>. If the correct value is not returned, this is a finding.<\/td>\n<td>To set the runtime status of the <code>kernel.exec-shield<\/code> kernel parameter, run the following command:<\/p>\n<pre xml:space=\"preserve\"># sysctl -w kernel.exec-shield=1<\/pre>\n<p>If this is not the system&#8217;s default value, add the following line to <code>\/etc\/sysctl.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">kernel.exec-shield = 1<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000080<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The system must not send ICMPv4 redirects by default.<\/td>\n<td>Sending ICMP redirects permits the system to instruct other systems to update their routing information. The ability to send ICMP redirects is only appropriate for systems acting as routers.<\/td>\n<td>The status of the <code>net.ipv4.conf.default.send_redirects<\/code> kernel parameter can be queried by running the following command:<\/p>\n<pre xml:space=\"preserve\">$ sysctl net.ipv4.conf.default.send_redirects<\/pre>\n<p>The output of the command should indicate a value of <code>0<\/code>. If this value is not the default value, investigate how it could have been adjusted at runtime, and verify it is not set improperly in <code>\/etc\/sysctl.conf<\/code>. If the correct value is not returned, this is a finding.<\/td>\n<td>To set the runtime status of the <code>net.ipv4.conf.default.send_redirects<\/code> kernel parameter, run the following command:<\/p>\n<pre xml:space=\"preserve\"># sysctl -w net.ipv4.conf.default.send_redirects=0<\/pre>\n<p>If this is not the system&#8217;s default value, add the following line to <code>\/etc\/sysctl.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">net.ipv4.conf.default.send_redirects = 0<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000081<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The system must not send ICMPv4 redirects from any interface.<\/td>\n<td>Sending ICMP redirects permits the system to instruct other systems to update their routing information. The ability to send ICMP redirects is only appropriate for systems acting as routers.<\/td>\n<td>The status of the <code>net.ipv4.conf.all.send_redirects<\/code> kernel parameter can be queried by running the following command:<\/p>\n<pre xml:space=\"preserve\">$ sysctl net.ipv4.conf.all.send_redirects<\/pre>\n<p>The output of the command should indicate a value of <code>0<\/code>. If this value is not the default value, investigate how it could have been adjusted at runtime, and verify it is not set improperly in <code>\/etc\/sysctl.conf<\/code>. If the correct value is not returned, this is a finding.<\/td>\n<td>To set the runtime status of the <code>net.ipv4.conf.all.send_redirects<\/code> kernel parameter, run the following command:<\/p>\n<pre xml:space=\"preserve\"># sysctl -w net.ipv4.conf.all.send_redirects=0<\/pre>\n<p>If this is not the system&#8217;s default value, add the following line to <code>\/etc\/sysctl.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">net.ipv4.conf.all.send_redirects = 0<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000082<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>IP forwarding for IPv4 must not be enabled, unless the system is a router.<\/td>\n<td>IP forwarding permits the kernel to forward packets from one network interface to another. The ability to forward packets between two networks is only appropriate for systems acting as routers.<\/td>\n<td>The status of the <code>net.ipv4.ip_forward<\/code> kernel parameter can be queried by running the following command:<\/p>\n<pre xml:space=\"preserve\">$ sysctl net.ipv4.ip_forward<\/pre>\n<p>The output of the command should indicate a value of <code>0<\/code>. If this value is not the default value, investigate how it could have been adjusted at runtime, and verify it is not set improperly in <code>\/etc\/sysctl.conf<\/code>. The ability to forward packets is only appropriate for routers. If the correct value is not returned, this is a finding.<\/td>\n<td>To set the runtime status of the <code>net.ipv4.ip_forward<\/code> kernel parameter, run the following command:<\/p>\n<pre xml:space=\"preserve\"># sysctl -w net.ipv4.ip_forward=0<\/pre>\n<p>If this is not the system&#8217;s default value, add the following line to <code>\/etc\/sysctl.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">net.ipv4.ip_forward = 0<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000083<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The system must not accept IPv4 source-routed packets on any interface.<\/td>\n<td>Accepting source-routed packets in the IPv4 protocol has few legitimate uses. It should be disabled unless it is absolutely required.<\/td>\n<td>The status of the <code>net.ipv4.conf.all.accept_source_route<\/code> kernel parameter can be queried by running the following command:<\/p>\n<pre xml:space=\"preserve\">$ sysctl net.ipv4.conf.all.accept_source_route<\/pre>\n<p>The output of the command should indicate a value of <code>0<\/code>. If this value is not the default value, investigate how it could have been adjusted at runtime, and verify it is not set improperly in <code>\/etc\/sysctl.conf<\/code>. If the correct value is not returned, this is a finding.<\/td>\n<td>To set the runtime status of the <code>net.ipv4.conf.all.accept_source_route<\/code> kernel parameter, run the following command:<\/p>\n<pre xml:space=\"preserve\"># sysctl -w net.ipv4.conf.all.accept_source_route=0<\/pre>\n<p>If this is not the system&#8217;s default value, add the following line to <code>\/etc\/sysctl.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">net.ipv4.conf.all.accept_source_route = 0<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000084<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The system must not accept ICMPv4 redirect packets on any interface.<\/td>\n<td>Accepting ICMP redirects has few legitimate uses. It should be disabled unless it is absolutely required.<\/td>\n<td>The status of the <code>net.ipv4.conf.all.accept_redirects<\/code> kernel parameter can be queried by running the following command:<\/p>\n<pre xml:space=\"preserve\">$ sysctl net.ipv4.conf.all.accept_redirects<\/pre>\n<p>The output of the command should indicate a value of <code>0<\/code>. If this value is not the default value, investigate how it could have been adjusted at runtime, and verify it is not set improperly in <code>\/etc\/sysctl.conf<\/code>. If the correct value is not returned, this is a finding.<\/td>\n<td>To set the runtime status of the <code>net.ipv4.conf.all.accept_redirects<\/code> kernel parameter, run the following command:<\/p>\n<pre xml:space=\"preserve\"># sysctl -w net.ipv4.conf.all.accept_redirects=0<\/pre>\n<p>If this is not the system&#8217;s default value, add the following line to <code>\/etc\/sysctl.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">net.ipv4.conf.all.accept_redirects = 0<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000086<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The system must not accept ICMPv4 secure redirect packets on any interface.<\/td>\n<td>Accepting &#8220;secure&#8221; ICMP redirects (from those gateways listed as default gateways) has few legitimate uses. It should be disabled unless it is absolutely required.<\/td>\n<td>The status of the <code>net.ipv4.conf.all.secure_redirects<\/code> kernel parameter can be queried by running the following command:<\/p>\n<pre xml:space=\"preserve\">$ sysctl net.ipv4.conf.all.secure_redirects<\/pre>\n<p>The output of the command should indicate a value of <code>0<\/code>. If this value is not the default value, investigate how it could have been adjusted at runtime, and verify it is not set improperly in <code>\/etc\/sysctl.conf<\/code>. If the correct value is not returned, this is a finding.<\/td>\n<td>To set the runtime status of the <code>net.ipv4.conf.all.secure_redirects<\/code> kernel parameter, run the following command:<\/p>\n<pre xml:space=\"preserve\"># sysctl -w net.ipv4.conf.all.secure_redirects=0<\/pre>\n<p>If this is not the system&#8217;s default value, add the following line to <code>\/etc\/sysctl.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">net.ipv4.conf.all.secure_redirects = 0<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000088<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The system must log Martian packets.<\/td>\n<td>The presence of &#8220;martian&#8221; packets (which have impossible addresses) as well as spoofed packets, source-routed packets, and redirects could be a sign of nefarious network activity. Logging these packets enables this activity to be detected.<\/td>\n<td>The status of the <code>net.ipv4.conf.all.log_martians<\/code> kernel parameter can be queried by running the following command:<\/p>\n<pre xml:space=\"preserve\">$ sysctl net.ipv4.conf.all.log_martians<\/pre>\n<p>The output of the command should indicate a value of <code>1<\/code>. If this value is not the default value, investigate how it could have been adjusted at runtime, and verify it is not set improperly in <code>\/etc\/sysctl.conf<\/code>. If the correct value is not returned, this is a finding.<\/td>\n<td>To set the runtime status of the <code>net.ipv4.conf.all.log_martians<\/code> kernel parameter, run the following command:<\/p>\n<pre xml:space=\"preserve\"># sysctl -w net.ipv4.conf.all.log_martians=1<\/pre>\n<p>If this is not the system&#8217;s default value, add the following line to <code>\/etc\/sysctl.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">net.ipv4.conf.all.log_martians = 1<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000089<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The system must not accept IPv4 source-routed packets by default.<\/td>\n<td>Accepting source-routed packets in the IPv4 protocol has few legitimate uses. It should be disabled unless it is absolutely required.<\/td>\n<td>The status of the <code>net.ipv4.conf.default.accept_source_route<\/code> kernel parameter can be queried by running the following command:<\/p>\n<pre xml:space=\"preserve\">$ sysctl net.ipv4.conf.default.accept_source_route<\/pre>\n<p>The output of the command should indicate a value of <code>0<\/code>. If this value is not the default value, investigate how it could have been adjusted at runtime, and verify it is not set improperly in <code>\/etc\/sysctl.conf<\/code>. If the correct value is not returned, this is a finding.<\/td>\n<td>To set the runtime status of the <code>net.ipv4.conf.default.accept_source_route<\/code> kernel parameter, run the following command:<\/p>\n<pre xml:space=\"preserve\"># sysctl -w net.ipv4.conf.default.accept_source_route=0<\/pre>\n<p>If this is not the system&#8217;s default value, add the following line to <code>\/etc\/sysctl.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">net.ipv4.conf.default.accept_source_route = 0<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000090<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The system must not accept ICMPv4 secure redirect packets by default.<\/td>\n<td>Accepting &#8220;secure&#8221; ICMP redirects (from those gateways listed as default gateways) has few legitimate uses. It should be disabled unless it is absolutely required.<\/td>\n<td>The status of the <code>net.ipv4.conf.default.secure_redirects<\/code> kernel parameter can be queried by running the following command:<\/p>\n<pre xml:space=\"preserve\">$ sysctl net.ipv4.conf.default.secure_redirects<\/pre>\n<p>The output of the command should indicate a value of <code>0<\/code>. If this value is not the default value, investigate how it could have been adjusted at runtime, and verify it is not set improperly in <code>\/etc\/sysctl.conf<\/code>. If the correct value is not returned, this is a finding.<\/td>\n<td>To set the runtime status of the <code>net.ipv4.conf.default.secure_redirects<\/code> kernel parameter, run the following command:<\/p>\n<pre xml:space=\"preserve\"># sysctl -w net.ipv4.conf.default.secure_redirects=0<\/pre>\n<p>If this is not the system&#8217;s default value, add the following line to <code>\/etc\/sysctl.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">net.ipv4.conf.default.secure_redirects = 0<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000091<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The system must ignore IPv4 ICMP redirect messages.<\/td>\n<td>This feature of the IPv4 protocol has few legitimate uses. It should be disabled unless it is absolutely required.<\/td>\n<td>The status of the <code>net.ipv4.conf.default.accept_redirects<\/code> kernel parameter can be queried by running the following command:<\/p>\n<pre xml:space=\"preserve\">$ sysctl net.ipv4.conf.default.accept_redirects<\/pre>\n<p>The output of the command should indicate a value of <code>0<\/code>. If this value is not the default value, investigate how it could have been adjusted at runtime, and verify it is not set improperly in <code>\/etc\/sysctl.conf<\/code>. If the correct value is not returned, this is a finding.<\/td>\n<td>To set the runtime status of the <code>net.ipv4.conf.default.accept_redirects<\/code> kernel parameter, run the following command:<\/p>\n<pre xml:space=\"preserve\"># sysctl -w net.ipv4.conf.default.accept_redirects=0<\/pre>\n<p>If this is not the system&#8217;s default value, add the following line to <code>\/etc\/sysctl.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">net.ipv4.conf.default.accept_redirects = 0<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000092<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The system must not respond to ICMPv4 sent to a broadcast address.<\/td>\n<td>Ignoring ICMP echo requests (pings) sent to broadcast or multicast addresses makes the system slightly more difficult to enumerate on the network.<\/td>\n<td>The status of the <code>net.ipv4.icmp_echo_ignore_broadcasts<\/code> kernel parameter can be queried by running the following command:<\/p>\n<pre xml:space=\"preserve\">$ sysctl net.ipv4.icmp_echo_ignore_broadcasts<\/pre>\n<p>The output of the command should indicate a value of <code>1<\/code>. If this value is not the default value, investigate how it could have been adjusted at runtime, and verify it is not set improperly in <code>\/etc\/sysctl.conf<\/code>. If the correct value is not returned, this is a finding.<\/td>\n<td>To set the runtime status of the <code>net.ipv4.icmp_echo_ignore_broadcasts<\/code> kernel parameter, run the following command:<\/p>\n<pre xml:space=\"preserve\"># sysctl -w net.ipv4.icmp_echo_ignore_broadcasts=1<\/pre>\n<p>If this is not the system&#8217;s default value, add the following line to <code>\/etc\/sysctl.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">net.ipv4.icmp_echo_ignore_broadcasts = 1<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000093<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The system must ignore ICMPv4 bogus error responses.<\/td>\n<td>Ignoring bogus ICMP error responses reduces log size, although some activity would not be logged.<\/td>\n<td>The status of the <code>net.ipv4.icmp_ignore_bogus_error_responses<\/code> kernel parameter can be queried by running the following command:<\/p>\n<pre xml:space=\"preserve\">$ sysctl net.ipv4.icmp_ignore_bogus_error_responses<\/pre>\n<p>The output of the command should indicate a value of <code>1<\/code>. If this value is not the default value, investigate how it could have been adjusted at runtime, and verify it is not set improperly in <code>\/etc\/sysctl.conf<\/code>. If the correct value is not returned, this is a finding.<\/td>\n<td>To set the runtime status of the <code>net.ipv4.icmp_ignore_bogus_error_responses<\/code> kernel parameter, run the following command:<\/p>\n<pre xml:space=\"preserve\"># sysctl -w net.ipv4.icmp_ignore_bogus_error_responses=1<\/pre>\n<p>If this is not the system&#8217;s default value, add the following line to <code>\/etc\/sysctl.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">net.ipv4.icmp_ignore_bogus_error_responses = 1<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000095<\/td>\n<td>CCI-001095<\/td>\n<td>medium<\/td>\n<td>The system must be configured to use TCP syncookies when experiencing a TCP SYN flood.<\/td>\n<td>A TCP SYN flood attack can cause a denial of service by filling a system&#8217;s TCP connection table with connections in the SYN_RCVD state. Syncookies can be used to track a connection when a subsequent ACK is received, verifying the initiator is attempting a valid connection and is not a flood source. This feature is activated when a flood condition is detected, and enables the system to continue servicing valid connection requests.<\/td>\n<td>The status of the <code>net.ipv4.tcp_syncookies<\/code> kernel parameter can be queried by running the following command:<\/p>\n<pre xml:space=\"preserve\">$ sysctl net.ipv4.tcp_syncookies<\/pre>\n<p>The output of the command should indicate a value of <code>1<\/code>. If this value is not the default value, investigate how it could have been adjusted at runtime, and verify it is not set improperly in <code>\/etc\/sysctl.conf<\/code>. If the correct value is not returned, this is a finding.<\/td>\n<td>To set the runtime status of the <code>net.ipv4.tcp_syncookies<\/code> kernel parameter, run the following command:<\/p>\n<pre xml:space=\"preserve\"># sysctl -w net.ipv4.tcp_syncookies=1<\/pre>\n<p>If this is not the system&#8217;s default value, add the following line to <code>\/etc\/sysctl.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">net.ipv4.tcp_syncookies = 1<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000096<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The system must use a reverse-path filter for IPv4 network traffic when possible on all interfaces.<\/td>\n<td>Enabling reverse path filtering drops packets with source addresses that should not have been able to be received on the interface they were received on. It should not be used on systems which are routers for complicated networks, but is helpful for end hosts and routers serving small networks.<\/td>\n<td>The status of the <code>net.ipv4.conf.all.rp_filter<\/code> kernel parameter can be queried by running the following command:<\/p>\n<pre xml:space=\"preserve\">$ sysctl net.ipv4.conf.all.rp_filter<\/pre>\n<p>The output of the command should indicate a value of <code>1<\/code>. If this value is not the default value, investigate how it could have been adjusted at runtime, and verify it is not set improperly in <code>\/etc\/sysctl.conf<\/code>. If the correct value is not returned, this is a finding.<\/td>\n<td>To set the runtime status of the <code>net.ipv4.conf.all.rp_filter<\/code> kernel parameter, run the following command:<\/p>\n<pre xml:space=\"preserve\"># sysctl -w net.ipv4.conf.all.rp_filter=1<\/pre>\n<p>If this is not the system&#8217;s default value, add the following line to <code>\/etc\/sysctl.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">net.ipv4.conf.all.rp_filter = 1<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000097<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The system must use a reverse-path filter for IPv4 network traffic when possible by default.<\/td>\n<td>Enabling reverse path filtering drops packets with source addresses that should not have been able to be received on the interface they were received on. It should not be used on systems which are routers for complicated networks, but is helpful for end hosts and routers serving small networks.<\/td>\n<td>The status of the <code>net.ipv4.conf.default.rp_filter<\/code> kernel parameter can be queried by running the following command:<\/p>\n<pre xml:space=\"preserve\">$ sysctl net.ipv4.conf.default.rp_filter<\/pre>\n<p>The output of the command should indicate a value of <code>1<\/code>. If this value is not the default value, investigate how it could have been adjusted at runtime, and verify it is not set improperly in <code>\/etc\/sysctl.conf<\/code>. If the correct value is not returned, this is a finding.<\/td>\n<td>To set the runtime status of the <code>net.ipv4.conf.default.rp_filter<\/code> kernel parameter, run the following command:<\/p>\n<pre xml:space=\"preserve\"># sysctl -w net.ipv4.conf.default.rp_filter=1<\/pre>\n<p>If this is not the system&#8217;s default value, add the following line to <code>\/etc\/sysctl.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">net.ipv4.conf.default.rp_filter = 1<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000098<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The IPv6 protocol handler must not be bound to the network stack unless needed.<\/td>\n<td>Any unnecessary network stacks &#8211; including IPv6 &#8211; should be disabled, to reduce the vulnerability to exploitation.<\/td>\n<td>If the system uses IPv6, this is not applicable.<\/p>\n<p>If the system is configured to prevent the loading of the <code>ipv6<\/code> kernel module, it will contain a line of the form:<\/p>\n<pre>options ipv6 disable=1<\/pre>\n<p>Such lines may be inside any file in <code>\/etc\/modprobe.d<\/code> or the deprecated<code>\/etc\/modprobe.conf<\/code>. This permits insertion of the IPv6 kernel module (which other parts of the system expect to be present), but otherwise keeps it inactive. Run the following command to search for such lines in all files in <code>\/etc\/modprobe.d<\/code> and the deprecated <code>\/etc\/modprobe.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">$ grep -r ipv6 \/etc\/modprobe.conf \/etc\/modprobe.d<\/pre>\n<p>If the ipv6 kernel module is loaded, this is a finding.<\/td>\n<td>To prevent the IPv6 kernel module (<code>ipv6<\/code>) from loading the IPv6 networking stack, add the following line to <code>\/etc\/modprobe.d\/disabled.conf<\/code> (or another file in <code>\/etc\/modprobe.d<\/code>):<\/p>\n<pre>options ipv6 disable=1<\/pre>\n<p>This permits the IPv6 module to be loaded (and thus satisfy other modules that depend on it), while disabling support for the IPv6 protocol.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000099<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The system must ignore ICMPv6 redirects by default.<\/td>\n<td>An illicit ICMP redirect message could result in a man-in-the-middle attack.<\/td>\n<td>The status of the <code>net.ipv6.conf.default.accept_redirects<\/code> kernel parameter can be queried by running the following command:<\/p>\n<pre xml:space=\"preserve\">$ sysctl net.ipv6.conf.default.accept_redirects<\/pre>\n<p>The output of the command should indicate a value of <code>0<\/code>. If this value is not the default value, investigate how it could have been adjusted at runtime, and verify it is not set improperly in <code>\/etc\/sysctl.conf<\/code>. If the correct value is not returned, this is a finding.<\/td>\n<td>To set the runtime status of the <code>net.ipv6.conf.default.accept_redirects<\/code> kernel parameter, run the following command:<\/p>\n<pre xml:space=\"preserve\"># sysctl -w net.ipv6.conf.default.accept_redirects=0<\/pre>\n<p>If this is not the system&#8217;s default value, add the following line to <code>\/etc\/sysctl.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">net.ipv6.conf.default.accept_redirects = 0<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000103<\/td>\n<td>CCI-001118<\/td>\n<td>medium<\/td>\n<td>The system must employ a local IPv6 firewall.<\/td>\n<td>The <code>ip6tables<\/code> service provides the system&#8217;s host-based firewalling capability for IPv6 and ICMPv6.<\/td>\n<td>If IPv6 is disabled, this is not applicable.<\/p>\n<p>Run the following command to determine the current status of the <code>ip6tables<\/code> service:<\/p>\n<pre># service ip6tables status<\/pre>\n<p>If the service is enabled, it should return the following:<\/p>\n<pre>ip6tables is running...<\/pre>\n<p>If the service is not running, this is a finding.<\/td>\n<td>The <code>ip6tables<\/code> service can be enabled with the following command:<\/p>\n<pre># chkconfig --level 2345 ip6tables on<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000105<\/td>\n<td>CCI-001117<\/td>\n<td>medium<\/td>\n<td>The system must employ a local IPv6 firewall.<\/td>\n<td>The <code>ip6tables<\/code> service provides the system&#8217;s host-based firewalling capability for IPv6 and ICMPv6.<\/td>\n<td>If IPv6 is disabled, this is not applicable.<\/p>\n<p>Run the following command to determine the current status of the <code>ip6tables<\/code> service:<\/p>\n<pre># service ip6tables status<\/pre>\n<p>If the service is enabled, it should return the following:<\/p>\n<pre>ip6tables is running...<\/pre>\n<p>If the service is not running, this is a finding.<\/td>\n<td>The <code>ip6tables<\/code> service can be enabled with the following command:<\/p>\n<pre># chkconfig --level 2345 ip6tables on<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000106<\/td>\n<td>CCI-001098<\/td>\n<td>medium<\/td>\n<td>The system must employ a local IPv6 firewall.<\/td>\n<td>The <code>ip6tables<\/code> service provides the system&#8217;s host-based firewalling capability for IPv6 and ICMPv6.<\/td>\n<td>If IPv6 is disabled, this is not applicable.<\/p>\n<p>Run the following command to determine the current status of the <code>ip6tables<\/code> service:<\/p>\n<pre># service ip6tables status<\/pre>\n<p>If the service is enabled, it should return the following:<\/p>\n<pre>ip6tables is running...<\/pre>\n<p>If the service is not running, this is a finding.<\/td>\n<td>The <code>ip6tables<\/code> service can be enabled with the following command:<\/p>\n<pre># chkconfig --level 2345 ip6tables on<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000107<\/td>\n<td>CCI-001100<\/td>\n<td>medium<\/td>\n<td>The system must employ a local IPv6 firewall.<\/td>\n<td>The <code>ip6tables<\/code> service provides the system&#8217;s host-based firewalling capability for IPv6 and ICMPv6.<\/td>\n<td>If IPv6 is disabled, this is not applicable.<\/p>\n<p>Run the following command to determine the current status of the <code>ip6tables<\/code> service:<\/p>\n<pre># service ip6tables status<\/pre>\n<p>If the service is enabled, it should return the following:<\/p>\n<pre>ip6tables is running...<\/pre>\n<p>If the service is not running, this is a finding.<\/td>\n<td>The <code>ip6tables<\/code> service can be enabled with the following command:<\/p>\n<pre># chkconfig --level 2345 ip6tables on<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000108<\/td>\n<td>CCI-001097<\/td>\n<td>medium<\/td>\n<td>The system must employ a local IPv6 firewall.<\/td>\n<td>The <code>ip6tables<\/code> service provides the system&#8217;s host-based firewalling capability for IPv6 and ICMPv6.<\/td>\n<td>If IPv6 is disabled, this is not applicable.<\/p>\n<p>Run the following command to determine the current status of the <code>ip6tables<\/code> service:<\/p>\n<pre># service ip6tables status<\/pre>\n<p>If the service is enabled, it should return the following:<\/p>\n<pre>ip6tables is running...<\/pre>\n<p>If the service is not running, this is a finding.<\/td>\n<td>The <code>ip6tables<\/code> service can be enabled with the following command:<\/p>\n<pre># chkconfig --level 2345 ip6tables on<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000109<\/td>\n<td>CCI-001414<\/td>\n<td>medium<\/td>\n<td>The system must employ a local IPv6 firewall.<\/td>\n<td>The <code>ip6tables<\/code> service provides the system&#8217;s host-based firewalling capability for IPv6 and ICMPv6.<\/td>\n<td>If IPv6 is disabled, this is not applicable.<\/p>\n<p>Run the following command to determine the current status of the <code>ip6tables<\/code> service:<\/p>\n<pre># service ip6tables status<\/pre>\n<p>If the service is enabled, it should return the following:<\/p>\n<pre>ip6tables is running...<\/pre>\n<p>If the service is not running, this is a finding.<\/td>\n<td>The <code>ip6tables<\/code> service can be enabled with the following command:<\/p>\n<pre># chkconfig --level 2345 ip6tables on<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000113<\/td>\n<td>CCI-001118<\/td>\n<td>medium<\/td>\n<td>The system must employ a local IPv4 firewall.<\/td>\n<td>The <code>iptables<\/code> service provides the system&#8217;s host-based firewalling capability for IPv4 and ICMP.<\/td>\n<td>Run the following command to determine the current status of the <code>iptables<\/code> service:<\/p>\n<pre># service iptables status<\/pre>\n<p>If the service is enabled, it should return the following:<\/p>\n<pre>iptables is running...<\/pre>\n<p>If the service is not running, this is a finding.<\/td>\n<td>The <code>iptables<\/code> service can be enabled with the following command:<\/p>\n<pre># chkconfig --level 2345 iptables on<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000115<\/td>\n<td>CCI-001117<\/td>\n<td>medium<\/td>\n<td>The system must employ a local IPv4 firewall.<\/td>\n<td>The <code>iptables<\/code> service provides the system&#8217;s host-based firewalling capability for IPv4 and ICMP.<\/td>\n<td>Run the following command to determine the current status of the <code>iptables<\/code> service:<\/p>\n<pre># service iptables status<\/pre>\n<p>If the service is enabled, it should return the following:<\/p>\n<pre>iptables is running...<\/pre>\n<p>If the service is not running, this is a finding.<\/td>\n<td>The <code>iptables<\/code> service can be enabled with the following command:<\/p>\n<pre># chkconfig --level 2345 iptables on<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000116<\/td>\n<td>CCI-001098<\/td>\n<td>medium<\/td>\n<td>The system must employ a local IPv4 firewall.<\/td>\n<td>The <code>iptables<\/code> service provides the system&#8217;s host-based firewalling capability for IPv4 and ICMP.<\/td>\n<td>Run the following command to determine the current status of the <code>iptables<\/code> service:<\/p>\n<pre># service iptables status<\/pre>\n<p>If the service is enabled, it should return the following:<\/p>\n<pre>iptables is running...<\/pre>\n<p>If the service is not running, this is a finding.<\/td>\n<td>The <code>iptables<\/code> service can be enabled with the following command:<\/p>\n<pre># chkconfig --level 2345 iptables on<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000117<\/td>\n<td>CCI-001100<\/td>\n<td>medium<\/td>\n<td>The system must employ a local IPv4 firewall.<\/td>\n<td>The <code>iptables<\/code> service provides the system&#8217;s host-based firewalling capability for IPv4 and ICMP.<\/td>\n<td>Run the following command to determine the current status of the <code>iptables<\/code> service:<\/p>\n<pre># service iptables status<\/pre>\n<p>If the service is enabled, it should return the following:<\/p>\n<pre>iptables is running...<\/pre>\n<p>If the service is not running, this is a finding.<\/td>\n<td>The <code>iptables<\/code> service can be enabled with the following command:<\/p>\n<pre># chkconfig --level 2345 iptables on<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000118<\/td>\n<td>CCI-001097<\/td>\n<td>medium<\/td>\n<td>The system must employ a local IPv4 firewall.<\/td>\n<td>The <code>iptables<\/code> service provides the system&#8217;s host-based firewalling capability for IPv4 and ICMP.<\/td>\n<td>Run the following command to determine the current status of the <code>iptables<\/code> service:<\/p>\n<pre># service iptables status<\/pre>\n<p>If the service is enabled, it should return the following:<\/p>\n<pre>iptables is running...<\/pre>\n<p>If the service is not running, this is a finding.<\/td>\n<td>The <code>iptables<\/code> service can be enabled with the following command:<\/p>\n<pre># chkconfig --level 2345 iptables on<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000119<\/td>\n<td>CCI-001414<\/td>\n<td>medium<\/td>\n<td>The system must employ a local IPv4 firewall.<\/td>\n<td>The <code>iptables<\/code> service provides the system&#8217;s host-based firewalling capability for IPv4 and ICMP.<\/td>\n<td>Run the following command to determine the current status of the <code>iptables<\/code> service:<\/p>\n<pre># service iptables status<\/pre>\n<p>If the service is enabled, it should return the following:<\/p>\n<pre>iptables is running...<\/pre>\n<p>If the service is not running, this is a finding.<\/td>\n<td>The <code>iptables<\/code> service can be enabled with the following command:<\/p>\n<pre># chkconfig --level 2345 iptables on<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000120<\/td>\n<td>CCI-000066<\/td>\n<td>medium<\/td>\n<td>The system&#8217;s local IPv4 firewall must implement a deny-all, allow-by-exception policy for inbound packets.<\/td>\n<td>In <code>iptables<\/code> the default policy is applied only after all the applicable rules in the table are examined for a match. Setting the default policy to <code>DROP<\/code> implements proper design for a firewall, i.e. any packets which are not explicitly permitted should not be accepted.<\/td>\n<td>Inspect the file <code>\/etc\/sysconfig\/iptables<\/code> to determine the default policy for the INPUT chain. It should be set to DROP:<\/p>\n<pre>$ sudo grep \":INPUT\" \/etc\/sysconfig\/iptables<\/pre>\n<p>If the default policy for the INPUT chain is not set to DROP, this is a finding.<\/td>\n<td>To set the default policy to DROP (instead of ACCEPT) for the built-in INPUT chain which processes incoming packets, add or correct the following line in <code>\/etc\/sysconfig\/iptables<\/code>:<\/p>\n<pre>:INPUT DROP [0:0]<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000121<\/td>\n<td>CCI-001115<\/td>\n<td>medium<\/td>\n<td>The system&#8217;s local firewall must implement a deny-all, allow-by-exception policy for inbound packets.<\/td>\n<td>In <code>iptables<\/code> the default policy is applied only after all the applicable rules in the table are examined for a match. Setting the default policy to <code>DROP<\/code> implements proper design for a firewall, i.e. any packets which are not explicitly permitted should not be accepted.<\/td>\n<td>Inspect the file <code>\/etc\/sysconfig\/iptables<\/code> to determine the default policy for the INPUT chain. It should be set to DROP:<\/p>\n<pre>$ sudo grep \":INPUT\" \/etc\/sysconfig\/iptables<\/pre>\n<p>If the default policy for the INPUT chain is not set to DROP, this is a finding.<\/td>\n<td>To set the default policy to DROP (instead of ACCEPT) for the built-in INPUT chain which processes incoming packets, add or correct the following line in <code>\/etc\/sysconfig\/iptables<\/code>:<\/p>\n<pre>:INPUT DROP [0:0]<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000122<\/td>\n<td>CCI-001154<\/td>\n<td>medium<\/td>\n<td>The system&#8217;s local firewall must implement a deny-all, allow-by-exception policy for inbound packets.<\/td>\n<td>In <code>iptables<\/code> the default policy is applied only after all the applicable rules in the table are examined for a match. Setting the default policy to <code>DROP<\/code> implements proper design for a firewall, i.e. any packets which are not explicitly permitted should not be accepted.<\/td>\n<td>Inspect the file <code>\/etc\/sysconfig\/iptables<\/code> to determine the default policy for the INPUT chain. It should be set to DROP:<\/p>\n<pre>$ sudo grep \":INPUT\" \/etc\/sysconfig\/iptables<\/pre>\n<p>If the default policy for the INPUT chain is not set to DROP, this is a finding.<\/td>\n<td>To set the default policy to DROP (instead of ACCEPT) for the built-in INPUT chain which processes incoming packets, add or correct the following line in <code>\/etc\/sysconfig\/iptables<\/code>:<\/p>\n<pre>:INPUT DROP [0:0]<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000124<\/td>\n<td>CCI-000382<\/td>\n<td>medium<\/td>\n<td>The Datagram Congestion Control Protocol (DCCP) must be disabled unless required.<\/td>\n<td>Disabling DCCP protects the system against exploitation of any flaws in its implementation.<\/td>\n<td>If the system is configured to prevent the loading of the <code>dccp<\/code> kernel module, it will contain lines inside any file in <code>\/etc\/modprobe.d<\/code> or the deprecated<code>\/etc\/modprobe.conf<\/code>. These lines instruct the module loading system to run another program (such as <code>\/bin\/false<\/code>) upon a module <code>install<\/code> event. Run the following command to search for such lines in all files in <code>\/etc\/modprobe.d<\/code> and the deprecated <code>\/etc\/modprobe.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">$ grep -r dccp \/etc\/modprobe.conf \/etc\/modprobe.d<\/pre>\n<p>If no line is returned, this is a finding.<\/td>\n<td>The Datagram Congestion Control Protocol (DCCP) is a relatively new transport layer protocol, designed to support streaming media and telephony. To configure the system to prevent the <code>dccp<\/code> kernel module from being loaded, add the following line to a file in the directory <code>\/etc\/modprobe.d<\/code>:<\/p>\n<pre xml:space=\"preserve\">install dccp \/bin\/false<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000125<\/td>\n<td>CCI-000382<\/td>\n<td>medium<\/td>\n<td>The Stream Control Transmission Protocol (SCTP) must be disabled unless required.<\/td>\n<td>Disabling SCTP protects the system against exploitation of any flaws in its implementation.<\/td>\n<td>If the system is configured to prevent the loading of the <code>sctp<\/code> kernel module, it will contain lines inside any file in <code>\/etc\/modprobe.d<\/code> or the deprecated<code>\/etc\/modprobe.conf<\/code>. These lines instruct the module loading system to run another program (such as <code>\/bin\/false<\/code>) upon a module <code>install<\/code> event. Run the following command to search for such lines in all files in <code>\/etc\/modprobe.d<\/code> and the deprecated <code>\/etc\/modprobe.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">$ grep -r sctp \/etc\/modprobe.conf \/etc\/modprobe.d<\/pre>\n<p>If no line is returned, this is a finding.<\/td>\n<td>The Stream Control Transmission Protocol (SCTP) is a transport layer protocol, designed to support the idea of message-oriented communication, with several streams of messages within one connection. To configure the system to prevent the <code>sctp<\/code> kernel module from being loaded, add the following line to a file in the directory <code>\/etc\/modprobe.d<\/code>:<\/p>\n<pre xml:space=\"preserve\">install sctp \/bin\/false<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000126<\/td>\n<td>CCI-000382<\/td>\n<td>low<\/td>\n<td>The Reliable Datagram Sockets (RDS) protocol must be disabled unless required.<\/td>\n<td>Disabling RDS protects the system against exploitation of any flaws in its implementation.<\/td>\n<td>If the system is configured to prevent the loading of the <code>rds<\/code> kernel module, it will contain lines inside any file in <code>\/etc\/modprobe.d<\/code> or the deprecated<code>\/etc\/modprobe.conf<\/code>. These lines instruct the module loading system to run another program (such as <code>\/bin\/false<\/code>) upon a module <code>install<\/code> event. Run the following command to search for such lines in all files in <code>\/etc\/modprobe.d<\/code> and the deprecated <code>\/etc\/modprobe.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">$ grep -r rds \/etc\/modprobe.conf \/etc\/modprobe.d<\/pre>\n<p>If no line is returned, this is a finding.<\/td>\n<td>The Reliable Datagram Sockets (RDS) protocol is a transport layer protocol designed to provide reliable high- bandwidth, low-latency communications between nodes in a cluster. To configure the system to prevent the <code>rds<\/code> kernel module from being loaded, add the following line to a file in the directory <code>\/etc\/modprobe.d<\/code>:<\/p>\n<pre xml:space=\"preserve\">install rds \/bin\/false<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000127<\/td>\n<td>CCI-000382<\/td>\n<td>medium<\/td>\n<td>The Transparent Inter-Process Communication (TIPC) protocol must be disabled unless required.<\/td>\n<td>Disabling TIPC protects the system against exploitation of any flaws in its implementation.<\/td>\n<td>If the system is configured to prevent the loading of the <code>tipc<\/code> kernel module, it will contain lines inside any file in <code>\/etc\/modprobe.d<\/code> or the deprecated<code>\/etc\/modprobe.conf<\/code>. These lines instruct the module loading system to run another program (such as <code>\/bin\/false<\/code>) upon a module <code>install<\/code> event. Run the following command to search for such lines in all files in <code>\/etc\/modprobe.d<\/code> and the deprecated <code>\/etc\/modprobe.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">$ grep -r tipc \/etc\/modprobe.conf \/etc\/modprobe.d<\/pre>\n<p>If no line is returned, this is a finding.<\/td>\n<td>The Transparent Inter-Process Communication (TIPC) protocol is designed to provide communications between nodes in a cluster. To configure the system to prevent the <code>tipc<\/code> kernel module from being loaded, add the following line to a file in the directory <code>\/etc\/modprobe.d<\/code>:<\/p>\n<pre xml:space=\"preserve\">install tipc \/bin\/false<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000133<\/td>\n<td>CCI-001314<\/td>\n<td>medium<\/td>\n<td>All rsyslog-generated log files must be owned by root.<\/td>\n<td>The log files generated by rsyslog contain valuable information regarding system configuration, user authentication, and other such information. Log files should be protected from unauthorized access.<\/td>\n<td>The owner of all log files written by <code>rsyslog<\/code> should be root. These log files are determined by the second part of each Rule line in <code>\/etc\/rsyslog.conf<\/code> and typically all appear in <code>\/var\/log<\/code>. To see the owner of a given log file, run the following command:<\/p>\n<pre>$ ls -l <i>LOGFILE<\/i><\/pre>\n<p>If the owner is not root, this is a finding.<\/td>\n<td>The owner of all log files written by <code>rsyslog<\/code> should be root. These log files are determined by the second part of each Rule line in <code>\/etc\/rsyslog.conf<\/code> and typically all appear in <code>\/var\/log<\/code>. For each log file <i>LOGFILE<\/i> referenced in <code>\/etc\/rsyslog.conf<\/code>, run the following command to inspect the file&#8217;s owner:<\/p>\n<pre>$ ls -l <i>LOGFILE<\/i><\/pre>\n<p>If the owner is not <code>root<\/code>, run the following command to correct this:<\/p>\n<pre>$ sudo chown root <i>LOGFILE<\/i><\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000134<\/td>\n<td>CCI-001314<\/td>\n<td>medium<\/td>\n<td>All rsyslog-generated log files must be group-owned by root.<\/td>\n<td>The log files generated by rsyslog contain valuable information regarding system configuration, user authentication, and other such information. Log files should be protected from unauthorized access.<\/td>\n<td>The group-owner of all log files written by <code>rsyslog<\/code> should be root. These log files are determined by the second part of each Rule line in <code>\/etc\/rsyslog.conf<\/code> and typically all appear in <code>\/var\/log<\/code>. To see the group-owner of a given log file, run the following command:<\/p>\n<pre>$ ls -l <i>LOGFILE<\/i><\/pre>\n<p>If the group-owner is not root, this is a finding.<\/td>\n<td>The group-owner of all log files written by <code>rsyslog<\/code> should be root. These log files are determined by the second part of each Rule line in <code>\/etc\/rsyslog.conf<\/code> and typically all appear in <code>\/var\/log<\/code>. For each log file <i>LOGFILE<\/i> referenced in <code>\/etc\/rsyslog.conf<\/code>, run the following command to inspect the file&#8217;s group owner:<\/p>\n<pre>$ ls -l <i>LOGFILE<\/i><\/pre>\n<p>If the owner is not <code>root<\/code>, run the following command to correct this:<\/p>\n<pre>$ sudo chgrp root <i>LOGFILE<\/i><\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000135<\/td>\n<td>CCI-001314<\/td>\n<td>medium<\/td>\n<td>All rsyslog-generated log files must have mode 0600 or less permissive.<\/td>\n<td>Log files can contain valuable information regarding system configuration. If the system log files are not protected unauthorized users could change the logged data, eliminating their forensic value.<\/td>\n<td>The file permissions for all log files written by <code>rsyslog<\/code> should be set to 600, or more restrictive. These log files are determined by the second part of each Rule line in <code>\/etc\/rsyslog.conf<\/code> and typically all appear in <code>\/var\/log<\/code>. To see the permissions of a given log file, run the following command:<\/p>\n<pre>$ ls -l <i>LOGFILE<\/i><\/pre>\n<p>The permissions should be 600, or more restrictive. If the permissions are not correct, this is a finding.<\/td>\n<td>The file permissions for all log files written by <code>rsyslog<\/code> should be set to 600, or more restrictive. These log files are determined by the second part of each Rule line in <code>\/etc\/rsyslog.conf<\/code> and typically all appear in <code>\/var\/log<\/code>. For each log file <i>LOGFILE<\/i> referenced in <code>\/etc\/rsyslog.conf<\/code>, run the following command to inspect the file&#8217;s permissions:<\/p>\n<pre>$ ls -l <i>LOGFILE<\/i><\/pre>\n<p>If the permissions are not 600 or more restrictive, run the following command to correct this:<\/p>\n<pre>$ sudo chmod 0600 <i>LOGFILE<\/i><\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000136<\/td>\n<td>CCI-001348<\/td>\n<td>medium<\/td>\n<td>The operating system must back up audit records on an organization defined frequency onto a different system or media than the system being audited.<\/td>\n<td>A log server (loghost) receives syslog messages from one or more systems. This data can be used as an additional log source in the event a system is compromised and its local logs are suspect. Forwarding log messages to a remote loghost also provides system administrators with a centralized place to view the status of multiple hosts within the enterprise.<\/td>\n<td>To ensure logs are sent to a remote host, examine the file <code>\/etc\/rsyslog.conf<\/code>. If using UDP, a line similar to the following should be present:<\/p>\n<pre> *.* @<i>loghost.example.com<\/i><\/pre>\n<p>If using TCP, a line similar to the following should be present:<\/p>\n<pre> *.* @@<i>loghost.example.com<\/i><\/pre>\n<p>If using RELP, a line similar to the following should be present:<\/p>\n<pre> *.* :omrelp:<i>loghost.example.com<\/i><\/pre>\n<p>If none of these are present, this is a finding.<\/td>\n<td>To configure rsyslog to send logs to a remote log server, open <code>\/etc\/rsyslog.conf<\/code> and read and understand the last section of the file, which describes the multiple directives necessary to activate remote logging. Along with these other directives, the system can be configured to forward its logs to a particular log server by adding or correcting one of the following lines, substituting <code><i>loghost.example.com<\/i><\/code> appropriately. The choice of protocol depends on the environment of the system; although TCP and RELP provide more reliable message delivery, they may not be supported in all environments.<br \/>\nTo use UDP for log message delivery:<\/p>\n<pre>*.* @<i>loghost.example.com<\/i><\/pre>\n<p>To use TCP for log message delivery:<\/p>\n<pre>*.* @@<i>loghost.example.com<\/i><\/pre>\n<p>To use RELP for log message delivery:<\/p>\n<pre>*.* :omrelp:<i>loghost.example.com<\/i><\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000137<\/td>\n<td>CCI-000136<\/td>\n<td>medium<\/td>\n<td>The operating system must support the requirement to centrally manage the content of audit records generated by organization defined information system components.<\/td>\n<td>A log server (loghost) receives syslog messages from one or more systems. This data can be used as an additional log source in the event a system is compromised and its local logs are suspect. Forwarding log messages to a remote loghost also provides system administrators with a centralized place to view the status of multiple hosts within the enterprise.<\/td>\n<td>To ensure logs are sent to a remote host, examine the file <code>\/etc\/rsyslog.conf<\/code>. If using UDP, a line similar to the following should be present:<\/p>\n<pre> *.* @<i>loghost.example.com<\/i><\/pre>\n<p>If using TCP, a line similar to the following should be present:<\/p>\n<pre> *.* @@<i>loghost.example.com<\/i><\/pre>\n<p>If using RELP, a line similar to the following should be present:<\/p>\n<pre> *.* :omrelp:<i>loghost.example.com<\/i><\/pre>\n<p>If none of these are present, this is a finding.<\/td>\n<td>To configure rsyslog to send logs to a remote log server, open <code>\/etc\/rsyslog.conf<\/code> and read and understand the last section of the file, which describes the multiple directives necessary to activate remote logging. Along with these other directives, the system can be configured to forward its logs to a particular log server by adding or correcting one of the following lines, substituting <code><i>loghost.example.com<\/i><\/code> appropriately. The choice of protocol depends on the environment of the system; although TCP and RELP provide more reliable message delivery, they may not be supported in all environments.<br \/>\nTo use UDP for log message delivery:<\/p>\n<pre>*.* @<i>loghost.example.com<\/i><\/pre>\n<p>To use TCP for log message delivery:<\/p>\n<pre>*.* @@<i>loghost.example.com<\/i><\/pre>\n<p>To use RELP for log message delivery:<\/p>\n<pre>*.* :omrelp:<i>loghost.example.com<\/i><\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000138<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>System logs must be rotated daily.<\/td>\n<td>Log files that are not properly rotated run the risk of growing so large that they fill up the \/var\/log partition. Valuable logging information could be lost if the \/var\/log partition becomes full.<\/td>\n<td>To determine the status and frequency of logrotate, run the following command:<\/p>\n<pre>$ sudo grep logrotate \/var\/log\/cron*<\/pre>\n<p>If logrotate is configured properly, output should include references to <code>\/etc\/cron.daily<\/code>. If logrotate is not configured to run daily, this is a finding.<\/td>\n<td>The <code>logrotate<\/code> utility allows for the automatic rotation of log files. The frequency of rotation is specified in <code>\/etc\/logrotate.conf<\/code>, which triggers a cron task. To configure logrotate to run daily, add or correct the following line in <code>\/etc\/logrotate.conf<\/code>:<\/p>\n<pre># rotate log files <i>frequency<\/i>\r\ndaily<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000139<\/td>\n<td>CCI-000347<\/td>\n<td>medium<\/td>\n<td>Auditing must be implemented.<\/td>\n<td>Ensuring the <code>auditd<\/code> service is active ensures audit records generated by the kernel can be written to disk, or that appropriate actions will be taken if other obstacles exist.<\/td>\n<td>Run the following command to determine the current status of the <code>auditd<\/code> service:<\/p>\n<pre># service auditd status<\/pre>\n<p>If the service is enabled, it should return the following:<\/p>\n<pre>auditd is running...<\/pre>\n<p>If the service is not running, this is a finding.<\/td>\n<td>The <code>auditd<\/code> service is an essential userspace component of the Linux Auditing System, as it is responsible for writing audit records to disk. The <code>auditd<\/code> service can be enabled with the following command:<\/p>\n<pre># chkconfig --level 2345 auditd on<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000140<\/td>\n<td>CCI-000157<\/td>\n<td>medium<\/td>\n<td>The operating system audit records must be able to be used by a report generation capability.<\/td>\n<td>The Red Hat Enterprise Linux audit system meets this requirement through design and implementation.<\/td>\n<td>The RHEL6 auditing system supports this requirement and cannot be configured to be out of compliance. Every audit record in RHEL includes a timestamp, the operation attempted, success or failure of the operation, the subject involved (executable\/process), the object involved (file\/path), and security labels for the subject and object. It also includes the ability to label events with custom key labels. The auditing system centralizes the recording of audit events for the entire system and includes reduction (<code>ausearch<\/code>), reporting (<code>aureport<\/code>), and real-time response (<code>audispd<\/code>) facilities. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000142<\/td>\n<td>CCI-000880<\/td>\n<td>medium<\/td>\n<td>The operating system must audit nonlocal maintenance and diagnostic sessions.<\/td>\n<td>Ensuring the <code>auditd<\/code> service is active ensures audit records generated by the kernel can be written to disk, or that appropriate actions will be taken if other obstacles exist.<\/td>\n<td>Run the following command to determine the current status of the <code>auditd<\/code> service:<\/p>\n<pre># service auditd status<\/pre>\n<p>If the service is enabled, it should return the following:<\/p>\n<pre>auditd is running...<\/pre>\n<p>If the service is not running, this is a finding.<\/td>\n<td>The <code>auditd<\/code> service is an essential userspace component of the Linux Auditing System, as it is responsible for writing audit records to disk. The <code>auditd<\/code> service can be enabled with the following command:<\/p>\n<pre># chkconfig --level 2345 auditd on<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000143<\/td>\n<td>CCI-001353<\/td>\n<td>medium<\/td>\n<td>The operating system must produce a system-wide (logical or physical) audit trail composed of audit records in a standardized format.<\/td>\n<td>Ensuring the <code>auditd<\/code> service is active ensures audit records generated by the kernel can be written to disk, or that appropriate actions will be taken if other obstacles exist.<\/td>\n<td>Run the following command to determine the current status of the <code>auditd<\/code> service:<\/p>\n<pre># service auditd status<\/pre>\n<p>If the service is enabled, it should return the following:<\/p>\n<pre>auditd is running...<\/pre>\n<p>If the service is not running, this is a finding.<\/td>\n<td>The <code>auditd<\/code> service is an essential userspace component of the Linux Auditing System, as it is responsible for writing audit records to disk. The <code>auditd<\/code> service can be enabled with the following command:<\/p>\n<pre># chkconfig --level 2345 auditd on<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000145<\/td>\n<td>CCI-001487<\/td>\n<td>medium<\/td>\n<td>The operating system must produce audit records containing sufficient information to establish the identity of any user\/subject associated with the event.<\/td>\n<td>Ensuring the <code>auditd<\/code> service is active ensures audit records generated by the kernel can be written to disk, or that appropriate actions will be taken if other obstacles exist.<\/td>\n<td>Run the following command to determine the current status of the <code>auditd<\/code> service:<\/p>\n<pre># service auditd status<\/pre>\n<p>If the service is enabled, it should return the following:<\/p>\n<pre>auditd is running...<\/pre>\n<p>If the service is not running, this is a finding.<\/td>\n<td>The <code>auditd<\/code> service is an essential userspace component of the Linux Auditing System, as it is responsible for writing audit records to disk. The <code>auditd<\/code> service can be enabled with the following command:<\/p>\n<pre># chkconfig --level 2345 auditd on<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000148<\/td>\n<td>CCI-000067<\/td>\n<td>medium<\/td>\n<td>The operating system must employ automated mechanisms to facilitate the monitoring and control of remote access methods.<\/td>\n<td>Ensuring the <code>auditd<\/code> service is active ensures audit records generated by the kernel can be written to disk, or that appropriate actions will be taken if other obstacles exist.<\/td>\n<td>Run the following command to determine the current status of the <code>auditd<\/code> service:<\/p>\n<pre># service auditd status<\/pre>\n<p>If the service is enabled, it should return the following:<\/p>\n<pre>auditd is running...<\/pre>\n<p>If the service is not running, this is a finding.<\/td>\n<td>The <code>auditd<\/code> service is an essential userspace component of the Linux Auditing System, as it is responsible for writing audit records to disk. The <code>auditd<\/code> service can be enabled with the following command:<\/p>\n<pre># chkconfig --level 2345 auditd on<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000149<\/td>\n<td>CCI-000158<\/td>\n<td>medium<\/td>\n<td>The operating system must provide the capability to automatically process audit records for events of interest based upon selectable, event criteria.<\/td>\n<td>Ensuring the <code>auditd<\/code> service is active ensures audit records generated by the kernel can be written to disk, or that appropriate actions will be taken if other obstacles exist.<\/td>\n<td>Run the following command to determine the current status of the <code>auditd<\/code> service:<\/p>\n<pre># service auditd status<\/pre>\n<p>If the service is enabled, it should return the following:<\/p>\n<pre>auditd is running...<\/pre>\n<p>If the service is not running, this is a finding.<\/td>\n<td>The <code>auditd<\/code> service is an essential userspace component of the Linux Auditing System, as it is responsible for writing audit records to disk. The <code>auditd<\/code> service can be enabled with the following command:<\/p>\n<pre># chkconfig --level 2345 auditd on<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000151<\/td>\n<td>CCI-001190<\/td>\n<td>medium<\/td>\n<td>The operating system must fail to an organization defined known state for organization defined types of failures.<\/td>\n<td>Ensuring the <code>auditd<\/code> service is active ensures audit records generated by the kernel can be written to disk, or that appropriate actions will be taken if other obstacles exist.<\/td>\n<td>Run the following command to determine the current status of the <code>auditd<\/code> service:<\/p>\n<pre># service auditd status<\/pre>\n<p>If the service is enabled, it should return the following:<\/p>\n<pre>auditd is running...<\/pre>\n<p>If the service is not running, this is a finding.<\/td>\n<td>The <code>auditd<\/code> service is an essential userspace component of the Linux Auditing System, as it is responsible for writing audit records to disk. The <code>auditd<\/code> service can be enabled with the following command:<\/p>\n<pre># chkconfig --level 2345 auditd on<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000154<\/td>\n<td>CCI-000130<\/td>\n<td>medium<\/td>\n<td>The operating system must produce audit records containing sufficient information to establish what type of events occurred.<\/td>\n<td>Ensuring the <code>auditd<\/code> service is active ensures audit records generated by the kernel can be written to disk, or that appropriate actions will be taken if other obstacles exist.<\/td>\n<td>Run the following command to determine the current status of the <code>auditd<\/code> service:<\/p>\n<pre># service auditd status<\/pre>\n<p>If the service is enabled, it should return the following:<\/p>\n<pre>auditd is running...<\/pre>\n<p>If the service is not running, this is a finding.<\/td>\n<td>The <code>auditd<\/code> service is an essential userspace component of the Linux Auditing System, as it is responsible for writing audit records to disk. The <code>auditd<\/code> service can be enabled with the following command:<\/p>\n<pre># chkconfig --level 2345 auditd on<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000157<\/td>\n<td>CCI-001464<\/td>\n<td>low<\/td>\n<td>Auditing must be enabled at boot by setting a kernel parameter.<\/td>\n<td>Each process on the system carries an &#8220;auditable&#8221; flag which indicates whether its activities can be audited. Although <code>auditd<\/code> takes care of enabling this for all processes which launch after it does, adding the kernel argument ensures it is set for every process during boot.<\/td>\n<td>Inspect the kernel boot arguments (which follow the word <code>kernel<\/code>) in <code>\/etc\/grub.conf<\/code>. If they include <code>audit=1<\/code>, then auditing is enabled at boot time. If auditing is not enabled at boot time, this is a finding.<\/td>\n<td>To ensure all processes can be audited, even those which start prior to the audit daemon, add the argument <code>audit=1<\/code> to the kernel line in <code>\/etc\/grub.conf<\/code>, in the manner below:<\/p>\n<pre>kernel \/vmlinuz-version ro vga=ext root=\/dev\/VolGroup00\/LogVol00 rhgb quiet audit=1<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000159<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The system must retain enough rotated audit logs to cover the required log retention period.<\/td>\n<td>The total storage for audit log files must be large enough to retain log information over the period required. This is a function of the maximum log file size and the number of logs retained.<\/td>\n<td>Inspect <code>\/etc\/audit\/auditd.conf<\/code> and locate the following line to determine how many logs the system is configured to retain after rotation: <code>$ sudo grep num_logs \/etc\/audit\/auditd.conf<\/code><\/p>\n<pre>num_logs = 5<\/pre>\n<p>If the system log file retention has not been properly configured, this is a finding.<\/td>\n<td>Determine how many log files <code>auditd<\/code> should retain when it rotates logs. Edit the file <code>\/etc\/audit\/auditd.conf<\/code>. Add or modify the following line, substituting <i>NUMLOGS<\/i> with the correct value of:<\/p>\n<pre>num_logs = <i>NUMLOGS<\/i><\/pre>\n<p>Set the value to 5 for general-purpose systems. Note that values less than 2 result in no log rotation.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000160<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The system must set a maximum audit log file size.<\/td>\n<td>The total storage for audit log files must be large enough to retain log information over the period required. This is a function of the maximum log file size and the number of logs retained.<\/td>\n<td>Inspect <code>\/etc\/audit\/auditd.conf<\/code> and locate the following line to determine how much data the system will retain in each audit log file: <code>$ sudo grep max_log_file \/etc\/audit\/auditd.conf<\/code><\/p>\n<pre>max_log_file = 6<\/pre>\n<p>If the system audit data threshold has not been properly configured, this is a finding.<\/td>\n<td>Determine the amount of audit data (in megabytes) which should be retained in each log file. Edit the file <code>\/etc\/audit\/auditd.conf<\/code>. Add or modify the following line, substituting the correct value of for <i>STOREMB<\/i>:<\/p>\n<pre>max_log_file = <i>STOREMB<\/i><\/pre>\n<p>Set the value to <code>6<\/code> (MB) or higher for general-purpose systems. Larger values, of course, support retention of even more audit data.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000161<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The system must rotate audit log files that reach the maximum file size.<\/td>\n<td>Automatically rotating logs (by setting this to <code>rotate<\/code>) minimizes the chances of the system unexpectedly running out of disk space by being overwhelmed with log data. However, for systems that must never discard log data, or which use external processes to transfer it and reclaim space, <code>keep_logs<\/code> can be employed.<\/td>\n<td>Inspect <code>\/etc\/audit\/auditd.conf<\/code> and locate the following line to determine if the system is configured to rotate logs when they reach their maximum size: <code>$ sudo grep max_log_file_action \/etc\/audit\/auditd.conf<\/code><\/p>\n<pre>max_log_file_action <code>rotate<\/code><\/pre>\n<p>If the system has not been properly configured to rotate audit logs, this is a finding.<\/td>\n<td>The default action to take when the logs reach their maximum size is to rotate the log files, discarding the oldest one. To configure the action taken by <code>auditd<\/code>, add or correct the line in <code>\/etc\/audit\/auditd.conf<\/code>:<\/p>\n<pre>max_log_file_action = <i>ACTION<\/i><\/pre>\n<p>Possible values for <i>ACTION<\/i> are described in the <code>auditd.conf<\/code> man page. These include:<\/p>\n<ul>\n<li><code>ignore<\/code><\/li>\n<li><code>syslog<\/code><\/li>\n<li><code>suspend<\/code><\/li>\n<li><code>rotate<\/code><\/li>\n<li><code>keep_logs<\/code><\/li>\n<\/ul>\n<p>Set the <code><i>ACTION<\/i><\/code> to <code>rotate<\/code> to ensure log rotation occurs. This is the default. The setting is case-insensitive.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000165<\/td>\n<td>CCI-000169<\/td>\n<td>low<\/td>\n<td>The audit system must be configured to audit all attempts to alter system time through adjtimex.<\/td>\n<td>Arbitrary changes to the system time can be used to obfuscate nefarious activities in log files, as well as to confuse network services that are highly dependent upon an accurate system time (such as sshd). All changes to the system time should be audited.<\/td>\n<td>To determine if the system is configured to audit calls to the <code>adjtimex<\/code> system call, run the following command:<\/p>\n<pre xml:space=\"preserve\"># auditctl -l | grep syscall | grep adjtimex<\/pre>\n<p>If the system is configured to audit this activity, it will return a line. If the system is not configured to audit time changes, this is a finding.<\/td>\n<td>On a 32-bit system, add the following to <code>\/etc\/audit\/audit.rules<\/code>:<\/p>\n<pre># audit_time_rules\r\n-a always,exit -F arch=b32 -S adjtimex -k audit_time_rules<\/pre>\n<p>On a 64-bit system, add the following to <code>\/etc\/audit\/audit.rules<\/code>:<\/p>\n<pre># audit_time_rules\r\n-a always,exit -F arch=b64 -S adjtimex -k audit_time_rules<\/pre>\n<p>The -k option allows for the specification of a key in string form that can be used for better reporting capability through ausearch and aureport. Multiple system calls can be defined on the same line to save space if desired, but is not required. See an example of multiple combined syscalls:<\/p>\n<pre>-a always,exit -F arch=b64 -S adjtimex -S settimeofday -S clock_settime \r\n-k audit_time_rules<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000167<\/td>\n<td>CCI-000169<\/td>\n<td>low<\/td>\n<td>The audit system must be configured to audit all attempts to alter system time through settimeofday.<\/td>\n<td>Arbitrary changes to the system time can be used to obfuscate nefarious activities in log files, as well as to confuse network services that are highly dependent upon an accurate system time (such as sshd). All changes to the system time should be audited.<\/td>\n<td>To determine if the system is configured to audit calls to the <code>settimeofday<\/code> system call, run the following command:<\/p>\n<pre xml:space=\"preserve\"># auditctl -l | grep syscall | grep settimeofday<\/pre>\n<p>If the system is configured to audit this activity, it will return a line. If the system is not configured to audit time changes, this is a finding.<\/td>\n<td>On a 32-bit system, add the following to <code>\/etc\/audit\/audit.rules<\/code>:<\/p>\n<pre># audit_time_rules\r\n-a always,exit -F arch=b32 -S settimeofday -k audit_time_rules<\/pre>\n<p>On a 64-bit system, add the following to <code>\/etc\/audit\/audit.rules<\/code>:<\/p>\n<pre># audit_time_rules\r\n-a always,exit -F arch=b64 -S settimeofday -k audit_time_rules<\/pre>\n<p>The -k option allows for the specification of a key in string form that can be used for better reporting capability through ausearch and aureport. Multiple system calls can be defined on the same line to save space if desired, but is not required. See an example of multiple combined syscalls:<\/p>\n<pre>-a always,exit -F arch=b64 -S adjtimex -S settimeofday -S clock_settime \r\n-k audit_time_rules<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000169<\/td>\n<td>CCI-000169<\/td>\n<td>low<\/td>\n<td>The audit system must be configured to audit all attempts to alter system time through stime.<\/td>\n<td>Arbitrary changes to the system time can be used to obfuscate nefarious activities in log files, as well as to confuse network services that are highly dependent upon an accurate system time (such as sshd). All changes to the system time should be audited.<\/td>\n<td>If the system is 64-bit only, this is not applicable.<br \/>\nTo determine if the system is configured to audit calls to the <code>stime<\/code> system call, run the following command:<\/p>\n<pre xml:space=\"preserve\"># auditctl -l | grep syscall | grep stime<\/pre>\n<p>If the system is configured to audit this activity, it will return a line. If the system is not configured to audit time changes, this is a finding.<\/td>\n<td>On a 32-bit system, add the following to <code>\/etc\/audit\/audit.rules<\/code>:<\/p>\n<pre># audit_time_rules\r\n-a always,exit -F arch=b32 -S stime -k audit_time_rules<\/pre>\n<p>On a 64-bit system, the &#8220;-S stime&#8221; is not necessary. The -k option allows for the specification of a key in string form that can be used for better reporting capability through ausearch and aureport. Multiple system calls can be defined on the same line to save space if desired, but is not required. See an example of multiple combined syscalls:<\/p>\n<pre>-a always,exit -F arch=b64 -S adjtimex -S settimeofday -S clock_settime \r\n-k audit_time_rules<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000171<\/td>\n<td>CCI-000169<\/td>\n<td>low<\/td>\n<td>The audit system must be configured to audit all attempts to alter system time through clock_settime.<\/td>\n<td>Arbitrary changes to the system time can be used to obfuscate nefarious activities in log files, as well as to confuse network services that are highly dependent upon an accurate system time (such as sshd). All changes to the system time should be audited.<\/td>\n<td>To determine if the system is configured to audit calls to the <code>clock_settime<\/code> system call, run the following command:<\/p>\n<pre xml:space=\"preserve\"># auditctl -l | grep syscall | grep clock_settime<\/pre>\n<p>If the system is configured to audit this activity, it will return a line. If the system is not configured to audit time changes, this is a finding.<\/td>\n<td>On a 32-bit system, add the following to <code>\/etc\/audit\/audit.rules<\/code>:<\/p>\n<pre># audit_time_rules\r\n-a always,exit -F arch=b32 -S clock_settime -k audit_time_rules<\/pre>\n<p>On a 64-bit system, add the following to <code>\/etc\/audit\/audit.rules<\/code>:<\/p>\n<pre># audit_time_rules\r\n-a always,exit -F arch=b64 -S clock_settime -k audit_time_rules<\/pre>\n<p>The -k option allows for the specification of a key in string form that can be used for better reporting capability through ausearch and aureport. Multiple system calls can be defined on the same line to save space if desired, but is not required. See an example of multiple combined syscalls:<\/p>\n<pre>-a always,exit -F arch=b64 -S adjtimex -S settimeofday -S clock_settime \r\n-k audit_time_rules<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000173<\/td>\n<td>CCI-000169<\/td>\n<td>low<\/td>\n<td>The audit system must be configured to audit all attempts to alter system time through \/etc\/localtime.<\/td>\n<td>Arbitrary changes to the system time can be used to obfuscate nefarious activities in log files, as well as to confuse network services that are highly dependent upon an accurate system time (such as sshd). All changes to the system time should be audited.<\/td>\n<td>To determine if the system is configured to audit attempts to alter time via the \/etc\/localtime file, run the following command:<\/p>\n<pre>$ sudo auditctl -l | grep \"watch=\/etc\/localtime\"<\/pre>\n<p>If the system is configured to audit this activity, it will return a line. If the system is not configured to audit time changes, this is a finding.<\/td>\n<td>Add the following to <code>\/etc\/audit\/audit.rules<\/code>:<\/p>\n<pre>-w \/etc\/localtime -p wa -k audit_time_rules<\/pre>\n<p>The -k option allows for the specification of a key in string form that can be used for better reporting capability through ausearch and aureport and should always be used.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000174<\/td>\n<td>CCI-000018<\/td>\n<td>low<\/td>\n<td>The operating system must automatically audit account creation.<\/td>\n<td>In addition to auditing new user and group accounts, these watches will alert the system administrator(s) to any modifications. Any unexpected users, groups, or modifications should be investigated for legitimacy.<\/td>\n<td>To determine if the system is configured to audit account changes, run the following command:<\/p>\n<pre>auditctl -l | egrep '(\/etc\/passwd|\/etc\/shadow|\/etc\/group|\/etc\/gshadow|\/etc\/security\/opasswd)'<\/pre>\n<p>If the system is configured to watch for account changes, lines should be returned for each file specified (and with <code>perm=wa<\/code> for each). If the system is not configured to audit account changes, this is a finding.<\/td>\n<td>Add the following to <code>\/etc\/audit\/audit.rules<\/code>, in order to capture events that modify account changes:<\/p>\n<pre># audit_account_changes\r\n-w \/etc\/group -p wa -k audit_account_changes\r\n-w \/etc\/passwd -p wa -k audit_account_changes\r\n-w \/etc\/gshadow -p wa -k audit_account_changes\r\n-w \/etc\/shadow -p wa -k audit_account_changes\r\n-w \/etc\/security\/opasswd -p wa -k audit_account_changes<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000175<\/td>\n<td>CCI-001403<\/td>\n<td>low<\/td>\n<td>The operating system must automatically audit account modification.<\/td>\n<td>In addition to auditing new user and group accounts, these watches will alert the system administrator(s) to any modifications. Any unexpected users, groups, or modifications should be investigated for legitimacy.<\/td>\n<td>To determine if the system is configured to audit account changes, run the following command:<\/p>\n<pre>auditctl -l | egrep '(\/etc\/passwd|\/etc\/shadow|\/etc\/group|\/etc\/gshadow|\/etc\/security\/opasswd)'<\/pre>\n<p>If the system is configured to watch for account changes, lines should be returned for each file specified (and with <code>perm=wa<\/code> for each). If the system is not configured to audit account changes, this is a finding.<\/td>\n<td>Add the following to <code>\/etc\/audit\/audit.rules<\/code>, in order to capture events that modify account changes:<\/p>\n<pre># audit_account_changes\r\n-w \/etc\/group -p wa -k audit_account_changes\r\n-w \/etc\/passwd -p wa -k audit_account_changes\r\n-w \/etc\/gshadow -p wa -k audit_account_changes\r\n-w \/etc\/shadow -p wa -k audit_account_changes\r\n-w \/etc\/security\/opasswd -p wa -k audit_account_changes<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000176<\/td>\n<td>CCI-001404<\/td>\n<td>low<\/td>\n<td>The operating system must automatically audit account disabling actions.<\/td>\n<td>In addition to auditing new user and group accounts, these watches will alert the system administrator(s) to any modifications. Any unexpected users, groups, or modifications should be investigated for legitimacy.<\/td>\n<td>To determine if the system is configured to audit account changes, run the following command:<\/p>\n<pre>auditctl -l | egrep '(\/etc\/passwd|\/etc\/shadow|\/etc\/group|\/etc\/gshadow|\/etc\/security\/opasswd)'<\/pre>\n<p>If the system is configured to watch for account changes, lines should be returned for each file specified (and with <code>perm=wa<\/code> for each). If the system is not configured to audit account changes, this is a finding.<\/td>\n<td>Add the following to <code>\/etc\/audit\/audit.rules<\/code>, in order to capture events that modify account changes:<\/p>\n<pre># audit_account_changes\r\n-w \/etc\/group -p wa -k audit_account_changes\r\n-w \/etc\/passwd -p wa -k audit_account_changes\r\n-w \/etc\/gshadow -p wa -k audit_account_changes\r\n-w \/etc\/shadow -p wa -k audit_account_changes\r\n-w \/etc\/security\/opasswd -p wa -k audit_account_changes<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000177<\/td>\n<td>CCI-001405<\/td>\n<td>low<\/td>\n<td>The operating system must automatically audit account termination.<\/td>\n<td>In addition to auditing new user and group accounts, these watches will alert the system administrator(s) to any modifications. Any unexpected users, groups, or modifications should be investigated for legitimacy.<\/td>\n<td>To determine if the system is configured to audit account changes, run the following command:<\/p>\n<pre>auditctl -l | egrep '(\/etc\/passwd|\/etc\/shadow|\/etc\/group|\/etc\/gshadow|\/etc\/security\/opasswd)'<\/pre>\n<p>If the system is configured to watch for account changes, lines should be returned for each file specified (and with <code>perm=wa<\/code> for each). If the system is not configured to audit account changes, this is a finding.<\/td>\n<td>Add the following to <code>\/etc\/audit\/audit.rules<\/code>, in order to capture events that modify account changes:<\/p>\n<pre># audit_account_changes\r\n-w \/etc\/group -p wa -k audit_account_changes\r\n-w \/etc\/passwd -p wa -k audit_account_changes\r\n-w \/etc\/gshadow -p wa -k audit_account_changes\r\n-w \/etc\/shadow -p wa -k audit_account_changes\r\n-w \/etc\/security\/opasswd -p wa -k audit_account_changes<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000182<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The audit system must be configured to audit modifications to the systems network configuration.<\/td>\n<td>The network environment should not be modified by anything other than administrator action. Any change to network parameters should be audited.<\/td>\n<td>To determine if the system is configured to audit changes to its network configuration, run the following command:<\/p>\n<pre>auditctl -l | egrep '(\/etc\/issue|\/etc\/issue.net|\/etc\/hosts|\/etc\/sysconfig\/network)'<\/pre>\n<p>If the system is configured to watch for network configuration changes, a line should be returned for each file specified (and <code>perm=wa<\/code> should be indicated for each). If the system is not configured to audit changes of the network configuration, this is a finding.<\/td>\n<td>Add the following to <code>\/etc\/audit\/audit.rules<\/code>, setting ARCH to either b32 or b64 as appropriate for your system:<\/p>\n<pre># audit_network_modifications\r\n-a always,exit -F arch=ARCH -S sethostname -S setdomainname -k audit_network_modifications\r\n-w \/etc\/issue -p wa -k audit_network_modifications\r\n-w \/etc\/issue.net -p wa -k audit_network_modifications\r\n-w \/etc\/hosts -p wa -k audit_network_modifications\r\n-w \/etc\/sysconfig\/network -p wa -k audit_network_modifications<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000183<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The audit system must be configured to audit modifications to the system&#8217;s Mandatory Access Control (MAC) configuration (SELinux).<\/td>\n<td>The system&#8217;s mandatory access policy (SELinux) should not be arbitrarily changed by anything other than administrator action. All changes to MAC policy should be audited.<\/td>\n<td>To determine if the system is configured to audit changes to its SELinux configuration files, run the following command:<\/p>\n<pre>$ sudo auditctl -l | grep \"dir=\/etc\/selinux\"<\/pre>\n<p>If the system is configured to watch for changes to its SELinux configuration, a line should be returned (including <code>perm=wa<\/code> indicating permissions that are watched). If the system is not configured to audit attempts to change the MAC policy, this is a finding.<\/td>\n<td>Add the following to <code>\/etc\/audit\/audit.rules<\/code>:<\/p>\n<pre>-w \/etc\/selinux\/ -p wa -k MAC-policy<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000184<\/td>\n<td>CCI-000172<\/td>\n<td>low<\/td>\n<td>The audit system must be configured to audit all discretionary access control permission modifications using chmod.<\/td>\n<td>The changing of file permissions could indicate that a user is attempting to gain access to information that would otherwise be disallowed. Auditing DAC modifications can facilitate the identification of patterns of abuse among both authorized and unauthorized users.<\/td>\n<td>To determine if the system is configured to audit calls to the <code>chmod<\/code> system call, run the following command:<\/p>\n<pre xml:space=\"preserve\"># auditctl -l | grep syscall | grep chmod<\/pre>\n<p>If the system is configured to audit this activity, it will return a line. If the system is not configured to audit permission changes, this is a finding.<\/td>\n<td>At a minimum the audit system should collect file permission changes for all users and root. Add the following to <code>\/etc\/audit\/audit.rules<\/code>:<\/p>\n<pre>-a always,exit -F arch=b32 -S chmod -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<p>If the system is 64 bit then also add the following:<\/p>\n<pre>-a always,exit -F arch=b64 -S chmod  -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000185<\/td>\n<td>CCI-000172<\/td>\n<td>low<\/td>\n<td>The audit system must be configured to audit all discretionary access control permission modifications using chown.<\/td>\n<td>The changing of file permissions could indicate that a user is attempting to gain access to information that would otherwise be disallowed. Auditing DAC modifications can facilitate the identification of patterns of abuse among both authorized and unauthorized users.<\/td>\n<td>To determine if the system is configured to audit calls to the <code>chown<\/code> system call, run the following command:<\/p>\n<pre xml:space=\"preserve\"># auditctl -l | grep syscall | grep chown<\/pre>\n<p>If the system is configured to audit this activity, it will return a line. If no line is returned, this is a finding.<\/td>\n<td>At a minimum the audit system should collect file permission changes for all users and root. Add the following to <code>\/etc\/audit\/audit.rules<\/code>:<\/p>\n<pre>-a always,exit -F arch=b32 -S chown -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<p>If the system is 64 bit then also add the following:<\/p>\n<pre>-a always,exit -F arch=b64 -S chown -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000186<\/td>\n<td>CCI-000172<\/td>\n<td>low<\/td>\n<td>The audit system must be configured to audit all discretionary access control permission modifications using fchmod.<\/td>\n<td>The changing of file permissions could indicate that a user is attempting to gain access to information that would otherwise be disallowed. Auditing DAC modifications can facilitate the identification of patterns of abuse among both authorized and unauthorized users.<\/td>\n<td>To determine if the system is configured to audit calls to the <code>fchmod<\/code> system call, run the following command:<\/p>\n<pre xml:space=\"preserve\"># auditctl -l | grep syscall | grep fchmod<\/pre>\n<p>If the system is configured to audit this activity, it will return a line. If no line is returned, this is a finding.<\/td>\n<td>At a minimum the audit system should collect file permission changes for all users and root. Add the following to <code>\/etc\/audit\/audit.rules<\/code>:<\/p>\n<pre>-a always,exit -F arch=b32 -S fchmod -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<p>If the system is 64 bit then also add the following:<\/p>\n<pre>-a always,exit -F arch=b64 -S fchmod -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000187<\/td>\n<td>CCI-000172<\/td>\n<td>low<\/td>\n<td>The audit system must be configured to audit all discretionary access control permission modifications using fchmodat.<\/td>\n<td>The changing of file permissions could indicate that a user is attempting to gain access to information that would otherwise be disallowed. Auditing DAC modifications can facilitate the identification of patterns of abuse among both authorized and unauthorized users.<\/td>\n<td>To determine if the system is configured to audit calls to the <code>fchmodat<\/code> system call, run the following command:<\/p>\n<pre xml:space=\"preserve\"># auditctl -l | grep syscall | grep fchmodat<\/pre>\n<p>If the system is configured to audit this activity, it will return a line. If no line is returned, this is a finding.<\/td>\n<td>At a minimum the audit system should collect file permission changes for all users and root. Add the following to <code>\/etc\/audit\/audit.rules<\/code>:<\/p>\n<pre>-a always,exit -F arch=b32 -S fchmodat -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<p>If the system is 64 bit then also add the following:<\/p>\n<pre>-a always,exit -F arch=b64 -S fchmodat -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000188<\/td>\n<td>CCI-000172<\/td>\n<td>low<\/td>\n<td>The audit system must be configured to audit all discretionary access control permission modifications using fchown.<\/td>\n<td>The changing of file permissions could indicate that a user is attempting to gain access to information that would otherwise be disallowed. Auditing DAC modifications can facilitate the identification of patterns of abuse among both authorized and unauthorized users.<\/td>\n<td>To determine if the system is configured to audit calls to the <code>fchown<\/code> system call, run the following command:<\/p>\n<pre xml:space=\"preserve\"># auditctl -l | grep syscall | grep fchown<\/pre>\n<p>If the system is configured to audit this activity, it will return a line. If no line is returned, this is a finding.<\/td>\n<td>At a minimum the audit system should collect file permission changes for all users and root. Add the following to <code>\/etc\/audit\/audit.rules<\/code>:<\/p>\n<pre>-a always,exit -F arch=b32 -S fchown -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<p>If the system is 64 bit then also add the following:<\/p>\n<pre>-a always,exit -F arch=b64 -S fchown -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000189<\/td>\n<td>CCI-000172<\/td>\n<td>low<\/td>\n<td>The audit system must be configured to audit all discretionary access control permission modifications using fchownat.<\/td>\n<td>The changing of file permissions could indicate that a user is attempting to gain access to information that would otherwise be disallowed. Auditing DAC modifications can facilitate the identification of patterns of abuse among both authorized and unauthorized users.<\/td>\n<td>To determine if the system is configured to audit calls to the <code>fchownat<\/code> system call, run the following command:<\/p>\n<pre xml:space=\"preserve\"># auditctl -l | grep syscall | grep fchownat<\/pre>\n<p>If the system is configured to audit this activity, it will return a line. If no line is returned, this is a finding.<\/td>\n<td>At a minimum the audit system should collect file permission changes for all users and root. Add the following to <code>\/etc\/audit\/audit.rules<\/code>:<\/p>\n<pre>-a always,exit -F arch=b32 -S fchownat -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<p>If the system is 64 bit then also add the following:<\/p>\n<pre>-a always,exit -F arch=b64 -S fchownat -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000190<\/td>\n<td>CCI-000172<\/td>\n<td>low<\/td>\n<td>The audit system must be configured to audit all discretionary access control permission modifications using fremovexattr.<\/td>\n<td>The changing of file permissions could indicate that a user is attempting to gain access to information that would otherwise be disallowed. Auditing DAC modifications can facilitate the identification of patterns of abuse among both authorized and unauthorized users.<\/td>\n<td>To determine if the system is configured to audit calls to the <code>fremovexattr<\/code> system call, run the following command:<\/p>\n<pre xml:space=\"preserve\"># auditctl -l | grep syscall | grep fremovexattr<\/pre>\n<p>If the system is configured to audit this activity, it will return a line. If no line is returned, this is a finding.<\/td>\n<td>At a minimum the audit system should collect file permission changes for all users and root. Add the following to <code>\/etc\/audit\/audit.rules<\/code>:<\/p>\n<pre>-a always,exit -F arch=b32 -S fremovexattr -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<p>If the system is 64 bit then also add the following:<\/p>\n<pre>-a always,exit -F arch=b64 -S fremovexattr -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000191<\/td>\n<td>CCI-000172<\/td>\n<td>low<\/td>\n<td>The audit system must be configured to audit all discretionary access control permission modifications using fsetxattr.<\/td>\n<td>The changing of file permissions could indicate that a user is attempting to gain access to information that would otherwise be disallowed. Auditing DAC modifications can facilitate the identification of patterns of abuse among both authorized and unauthorized users.<\/td>\n<td>To determine if the system is configured to audit calls to the <code>fsetxattr<\/code> system call, run the following command:<\/p>\n<pre xml:space=\"preserve\"># auditctl -l | grep syscall | grep fsetxattr<\/pre>\n<p>If the system is configured to audit this activity, it will return a line. If no line is returned, this is a finding.<\/td>\n<td>At a minimum the audit system should collect file permission changes for all users and root. Add the following to <code>\/etc\/audit\/audit.rules<\/code>:<\/p>\n<pre>-a always,exit -F arch=b32 -S fsetxattr -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<p>If the system is 64 bit then also add the following:<\/p>\n<pre>-a always,exit -F arch=b64 -S fsetxattr -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000192<\/td>\n<td>CCI-000172<\/td>\n<td>low<\/td>\n<td>The audit system must be configured to audit all discretionary access control permission modifications using lchown.<\/td>\n<td>The changing of file permissions could indicate that a user is attempting to gain access to information that would otherwise be disallowed. Auditing DAC modifications can facilitate the identification of patterns of abuse among both authorized and unauthorized users.<\/td>\n<td>To determine if the system is configured to audit calls to the <code>lchown<\/code> system call, run the following command:<\/p>\n<pre xml:space=\"preserve\"># auditctl -l | grep syscall | grep lchown<\/pre>\n<p>If the system is configured to audit this activity, it will return a line. If no line is returned, this is a finding.<\/td>\n<td>At a minimum the audit system should collect file permission changes for all users and root. Add the following to <code>\/etc\/audit\/audit.rules<\/code>:<\/p>\n<pre>-a always,exit -F arch=b32 -S lchown -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<p>If the system is 64 bit then also add the following:<\/p>\n<pre>-a always,exit -F arch=b64 -S lchown -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000193<\/td>\n<td>CCI-000172<\/td>\n<td>low<\/td>\n<td>The audit system must be configured to audit all discretionary access control permission modifications using lremovexattr.<\/td>\n<td>The changing of file permissions could indicate that a user is attempting to gain access to information that would otherwise be disallowed. Auditing DAC modifications can facilitate the identification of patterns of abuse among both authorized and unauthorized users.<\/td>\n<td>To determine if the system is configured to audit calls to the <code>lremovexattr<\/code> system call, run the following command:<\/p>\n<pre xml:space=\"preserve\"># auditctl -l | grep syscall | grep lremovexattr<\/pre>\n<p>If the system is configured to audit this activity, it will return a line. If no line is returned, this is a finding.<\/td>\n<td>At a minimum the audit system should collect file permission changes for all users and root. Add the following to <code>\/etc\/audit\/audit.rules<\/code>:<\/p>\n<pre>-a always,exit -F arch=b32 -S lremovexattr -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<p>If the system is 64 bit then also add the following:<\/p>\n<pre>-a always,exit -F arch=b64 -S lremovexattr -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000194<\/td>\n<td>CCI-000172<\/td>\n<td>low<\/td>\n<td>The audit system must be configured to audit all discretionary access control permission modifications using lsetxattr.<\/td>\n<td>The changing of file permissions could indicate that a user is attempting to gain access to information that would otherwise be disallowed. Auditing DAC modifications can facilitate the identification of patterns of abuse among both authorized and unauthorized users.<\/td>\n<td>To determine if the system is configured to audit calls to the <code>lsetxattr<\/code> system call, run the following command:<\/p>\n<pre xml:space=\"preserve\"># auditctl -l | grep syscall | grep lsetxattr<\/pre>\n<p>If the system is configured to audit this activity, it will return a line. If no line is returned, this is a finding.<\/td>\n<td>At a minimum the audit system should collect file permission changes for all users and root. Add the following to <code>\/etc\/audit\/audit.rules<\/code>:<\/p>\n<pre>-a always,exit -F arch=b32 -S lsetxattr -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<p>If the system is 64 bit then also add the following:<\/p>\n<pre>-a always,exit -F arch=b64 -S lsetxattr -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000195<\/td>\n<td>CCI-000172<\/td>\n<td>low<\/td>\n<td>The audit system must be configured to audit all discretionary access control permission modifications using removexattr.<\/td>\n<td>The changing of file permissions could indicate that a user is attempting to gain access to information that would otherwise be disallowed. Auditing DAC modifications can facilitate the identification of patterns of abuse among both authorized and unauthorized users.<\/td>\n<td>To determine if the system is configured to audit calls to the <code>removexattr<\/code> system call, run the following command:<\/p>\n<pre xml:space=\"preserve\"># auditctl -l | grep syscall | grep removexattr<\/pre>\n<p>If the system is configured to audit this activity, it will return a line. If no line is returned, this is a finding.<\/td>\n<td>At a minimum the audit system should collect file permission changes for all users and root. Add the following to <code>\/etc\/audit\/audit.rules<\/code>:<\/p>\n<pre>-a always,exit -F arch=b32 -S removexattr -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<p>If the system is 64 bit then also add the following:<\/p>\n<pre>-a always,exit -F arch=b64 -S removexattr -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000196<\/td>\n<td>CCI-000172<\/td>\n<td>low<\/td>\n<td>The audit system must be configured to audit all discretionary access control permission modifications using setxattr.<\/td>\n<td>The changing of file permissions could indicate that a user is attempting to gain access to information that would otherwise be disallowed. Auditing DAC modifications can facilitate the identification of patterns of abuse among both authorized and unauthorized users.<\/td>\n<td>To determine if the system is configured to audit calls to the <code>setxattr<\/code> system call, run the following command:<\/p>\n<pre xml:space=\"preserve\"># auditctl -l | grep syscall | grep setxattr<\/pre>\n<p>If the system is configured to audit this activity, it will return a line. If no line is returned, this is a finding.<\/td>\n<td>At a minimum the audit system should collect file permission changes for all users and root. Add the following to <code>\/etc\/audit\/audit.rules<\/code>:<\/p>\n<pre>-a always,exit -F arch=b32 -S setxattr -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<p>If the system is 64 bit then also add the following:<\/p>\n<pre>-a always,exit -F arch=b64 -S setxattr -F auid&gt;=500 -F auid!=4294967295 -k perm_mod<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000197<\/td>\n<td>CCI-000172<\/td>\n<td>low<\/td>\n<td>The audit system must be configured to audit failed attempts to access files and programs.<\/td>\n<td>Unsuccessful attempts to access files could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise.<\/td>\n<td>To verify that the audit system collects unauthorized file accesses, run the following commands:<\/p>\n<pre>$ sudo grep EACCES \/etc\/audit\/audit.rules<\/pre>\n<pre>$ sudo grep EPERM \/etc\/audit\/audit.rules<\/pre>\n<p>If 32-bit and 64-bit system calls to creat, open, openat, open_by_handle_at, truncate, and ftruncate are not audited during EACCES and EPERM, this is a finding.<\/td>\n<td>At a minimum the audit system should collect unauthorized file accesses for all users and root. Add the following to <code>\/etc\/audit\/audit.rules<\/code>:<\/p>\n<pre>-a always,exit -F arch=b32 -S creat -S open -S openat -S open_by_handle_at -S truncate -S ftruncate -F exit=-EACCES -F auid&gt;=500 -F auid!=4294967295 -k access\r\n-a always,exit -F arch=b32 -S creat -S open -S openat -S open_by_handle_at -S truncate -S ftruncate -F exit=-EPERM -F auid&gt;=500 -F auid!=4294967295 -k access\r\n-a always,exit -F arch=b64 -S creat -S open -S openat -S open_by_handle_at -S truncate -S ftruncate -F exit=-EACCES -F auid&gt;=500 -F auid!=4294967295 -k access\r\n-a always,exit -F arch=b64 -S creat -S open -S openat -S open_by_handle_at -S truncate -S ftruncate -F exit=-EPERM -F auid&gt;=500 -F auid!=4294967295 -k access<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000198<\/td>\n<td>CCI-000040<\/td>\n<td>low<\/td>\n<td>The audit system must be configured to audit all use of setuid programs.<\/td>\n<td>Privileged programs are subject to escalation-of-privilege attacks, which attempt to subvert their normal role of providing some necessary but limited capability. As such, motivation exists to monitor these programs for unusual activity.<\/td>\n<td>To verify that auditing of privileged command use is configured, run the following command to find relevant setuid \/ setgid programs:<\/p>\n<pre>$ sudo find \/ -xdev -type f -perm -4000 -o -perm -2000 2&gt;\/dev\/null<\/pre>\n<p>Run the following command to verify entries in the audit rules for all programs found with the previous command:<\/p>\n<pre>$ sudo grep path \/etc\/audit\/audit.rules<\/pre>\n<p>It should be the case that all relevant setuid \/ setgid programs have a line in the audit rules. If it is not the case, this is a finding.<\/td>\n<td>At a minimum the audit system should collect the execution of privileged commands for all users and root. To find the relevant setuid \/ setgid programs:<\/p>\n<pre>$ sudo find \/ -xdev -type f -perm -4000 -o -perm -2000 2&gt;\/dev\/null<\/pre>\n<p>Then, for each setuid \/ setgid program on the system, add a line of the following form to <code>\/etc\/audit\/audit.rules<\/code>, where <i>SETUID_PROG_PATH<\/i> is the full path to each setuid \/ setgid program in the list:<\/p>\n<pre>-a always,exit -F path=<i>SETUID_PROG_PATH<\/i> -F perm=x -F auid&gt;=500 -F auid!=4294967295 -k privileged<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000199<\/td>\n<td>CCI-000172<\/td>\n<td>low<\/td>\n<td>The audit system must be configured to audit successful file system mounts.<\/td>\n<td>The unauthorized exportation of data to external media could result in an information leak where classified information, Privacy Act information, and intellectual property could be lost. An audit trail should be created each time a filesystem is mounted to help identify and guard against information loss.<\/td>\n<td>To verify that auditing is configured for all media exportation events, run the following command:<\/p>\n<pre>$ sudo auditctl -l | grep syscall | grep mount<\/pre>\n<p>If there is not output, this is a finding.<\/td>\n<td>At a minimum the audit system should collect media exportation events for all users and root. Add the following to <code>\/etc\/audit\/audit.rules<\/code>, setting ARCH to either b32 or b64 as appropriate for your system:<\/p>\n<pre>-a always,exit -F arch=ARCH -S mount -F auid&gt;=500 -F auid!=4294967295 -k export<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000200<\/td>\n<td>CCI-000172<\/td>\n<td>low<\/td>\n<td>The audit system must be configured to audit user deletions of files and programs.<\/td>\n<td>Auditing file deletions will create an audit trail for files that are removed from the system. The audit trail could aid in system troubleshooting, as well as, detecting malicious processes that attempt to delete log files to conceal their presence.<\/td>\n<td>To determine if the system is configured to audit calls to the <code>unlink<\/code> system call, run the following command:<\/p>\n<pre xml:space=\"preserve\"># auditctl -l | grep syscall | grep unlink<\/pre>\n<p>If the system is configured to audit this activity, it will return a line. To determine if the system is configured to audit calls to the <code>unlinkat<\/code> system call, run the following command:<\/p>\n<pre xml:space=\"preserve\"># auditctl -l | grep syscall | grep unlinkat<\/pre>\n<p>If the system is configured to audit this activity, it will return a line. To determine if the system is configured to audit calls to the <code>rename<\/code> system call, run the following command:<\/p>\n<pre xml:space=\"preserve\"># auditctl -l | grep syscall | grep rename<\/pre>\n<p>If the system is configured to audit this activity, it will return a line. To determine if the system is configured to audit calls to the <code>renameat<\/code> system call, run the following command:<\/p>\n<pre xml:space=\"preserve\"># auditctl -l | grep syscall | grep renameat<\/pre>\n<p>If the system is configured to audit this activity, it will return a line. If no line is returned, this is a finding.<\/td>\n<td>At a minimum the audit system should collect file deletion events for all users and root. Add the following to <code>\/etc\/audit\/audit.rules<\/code>, setting ARCH to either b32 or b64 as appropriate for your system:<\/p>\n<pre>-a always,exit -F arch=ARCH -S rmdir -S unlink -S unlinkat -S rename -S renameat -F auid&gt;=500 -F auid!=4294967295 -k delete<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000201<\/td>\n<td>CCI-000172<\/td>\n<td>low<\/td>\n<td>The audit system must be configured to audit changes to the &#8220;\/etc\/sudoers&#8221; file.<\/td>\n<td>The actions taken by system administrators should be audited to keep a record of what was executed on the system, as well as, for accountability purposes.<\/td>\n<td>To verify that auditing is configured for system administrator actions, run the following command:<\/p>\n<pre>$ sudo auditctl -l | grep \"watch=\/etc\/sudoers\"<\/pre>\n<p>If there is not output, this is a finding.<\/td>\n<td>At a minimum the audit system should collect administrator actions for all users and root. Add the following to <code>\/etc\/audit\/audit.rules<\/code>:<\/p>\n<pre>-w \/etc\/sudoers -p wa -k actions<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000202<\/td>\n<td>CCI-000172<\/td>\n<td>medium<\/td>\n<td>The audit system must be configured to audit the loading and unloading of dynamic kernel modules.<\/td>\n<td>The addition\/removal of kernel modules can be used to alter the behavior of the kernel and potentially introduce malicious code into kernel space. It is important to have an audit trail of modules that have been introduced into the kernel.<\/td>\n<td>To determine if the system is configured to audit calls to the <code>init_module<\/code> system call, run the following command:<\/p>\n<pre xml:space=\"preserve\"># auditctl -l | grep syscall | grep init_module<\/pre>\n<p>If the system is configured to audit this activity, it will return a line. To determine if the system is configured to audit calls to the <code>delete_module<\/code> system call, run the following command:<\/p>\n<pre xml:space=\"preserve\"># auditctl -l | grep syscall | grep delete_module<\/pre>\n<p>If the system is configured to audit this activity, it will return a line. If no line is returned, this is a finding.<\/td>\n<td>Add the following to <code>\/etc\/audit\/audit.rules<\/code> in order to capture kernel module loading and unloading events, setting ARCH to either b32 or b64 as appropriate for your system:<\/p>\n<pre>-w \/sbin\/insmod -p x -k modules\r\n-w \/sbin\/rmmod -p x -k modules\r\n-w \/sbin\/modprobe -p x -k modules\r\n-a always,exit -F arch=<i>ARCH<\/i> -S init_module -S delete_module -k modules<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000203<\/td>\n<td>CCI-000382<\/td>\n<td>medium<\/td>\n<td>The xinetd service must be disabled if no network services utilizing it are enabled.<\/td>\n<td>The xinetd service provides a dedicated listener service for some programs, which is no longer necessary for commonly-used network services. Disabling it ensures that these uncommon services are not running, and also prevents attacks against xinetd itself.<\/td>\n<td>If network services are using the xinetd service, this is not applicable.<\/p>\n<p>To check that the <code>xinetd<\/code> service is disabled in system boot configuration, run the following command:<\/p>\n<pre># chkconfig <code>xinetd<\/code> --list<\/pre>\n<p>Output should indicate the <code>xinetd<\/code> service has either not been installed, or has been disabled at all runlevels, as shown in the example below:<\/p>\n<pre># chkconfig <code>xinetd<\/code> --list\r\n<code>xinetd<\/code>       0:off   1:off   2:off   3:off   4:off   5:off   6:off<\/pre>\n<p>Run the following command to verify <code>xinetd<\/code> is disabled through current runtime configuration:<\/p>\n<pre># service xinetd status<\/pre>\n<p>If the service is disabled the command will return the following output:<\/p>\n<pre>xinetd is stopped<\/pre>\n<p>If the service is running, this is a finding.<\/td>\n<td>The <code>xinetd<\/code> service can be disabled with the following command:<\/p>\n<pre># chkconfig xinetd off<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000204<\/td>\n<td>CCI-000382<\/td>\n<td>low<\/td>\n<td>The xinetd service must be uninstalled if no network services utilizing it are enabled.<\/td>\n<td>Removing the <code>xinetd<\/code> package decreases the risk of the xinetd service&#8217;s accidental (or intentional) activation.<\/td>\n<td>If network services are using the xinetd service, this is not applicable.<\/p>\n<p>Run the following command to determine if the <code>xinetd<\/code> package is installed:<\/p>\n<pre># rpm -q xinetd<\/pre>\n<p>If the package is installed, this is a finding.<\/td>\n<td>The <code>xinetd<\/code> package can be uninstalled with the following command:<\/p>\n<pre>$ sudo yum erase xinetd<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000206<\/td>\n<td>CCI-000381<\/td>\n<td>high<\/td>\n<td>The telnet-server package must not be installed.<\/td>\n<td>Removing the <code>telnet-server<\/code> package decreases the risk of the telnet service&#8217;s accidental (or intentional) activation.<\/td>\n<td>Run the following command to determine if the <code>telnet-server<\/code> package is installed:<\/p>\n<pre># rpm -q telnet-server<\/pre>\n<p>If the package is installed, this is a finding.<\/td>\n<td>The <code>telnet-server<\/code> package can be uninstalled with the following command:<\/p>\n<pre>$ sudo yum erase telnet-server<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000211<\/td>\n<td>CCI-000888<\/td>\n<td>high<\/td>\n<td>The telnet daemon must not be running.<\/td>\n<td>The telnet protocol uses unencrypted network communication, which means that data from the login session, including passwords and all other information transmitted during the session, can be stolen by eavesdroppers on the network. The telnet protocol is also subject to man-in-the-middle attacks.<\/td>\n<td>To check that the <code>telnet<\/code> service is disabled in system boot configuration, run the following command:<\/p>\n<pre># chkconfig <code>telnet<\/code> --list<\/pre>\n<p>Output should indicate the <code>telnet<\/code> service has either not been installed, or has been disabled, as shown in the example below:<\/p>\n<pre># chkconfig <code>telnet<\/code> --list\r\n<code>telnet<\/code>       off<\/pre>\n<p>If the service is running, this is a finding.<\/td>\n<td>The <code>telnet<\/code> service can be disabled with the following command:<\/p>\n<pre># chkconfig telnet off<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000213<\/td>\n<td>CCI-000381<\/td>\n<td>high<\/td>\n<td>The rsh-server package must not be installed.<\/td>\n<td>The <code>rsh-server<\/code> package provides several obsolete and insecure network services. Removing it decreases the risk of those services&#8217; accidental (or intentional) activation.<\/td>\n<td>Run the following command to determine if the <code>rsh-server<\/code> package is installed:<\/p>\n<pre># rpm -q rsh-server<\/pre>\n<p>If the package is installed, this is a finding.<\/td>\n<td>The <code>rsh-server<\/code> package can be uninstalled with the following command:<\/p>\n<pre>$ sudo yum erase rsh-server<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000214<\/td>\n<td>CCI-000068<\/td>\n<td>high<\/td>\n<td>The rshd service must not be running.<\/td>\n<td>The rsh service uses unencrypted network communications, which means that data from the login session, including passwords and all other information transmitted during the session, can be stolen by eavesdroppers on the network.<\/td>\n<td>To check that the <code>rsh<\/code> service is disabled in system boot configuration, run the following command:<\/p>\n<pre># chkconfig <code>rsh<\/code> --list<\/pre>\n<p>Output should indicate the <code>rsh<\/code> service has either not been installed, or has been disabled, as shown in the example below:<\/p>\n<pre># chkconfig <code>rsh<\/code> --list\r\n<code>rsh<\/code>       off<\/pre>\n<p>If the service is running, this is a finding.<\/td>\n<td>The <code>rsh<\/code> service, which is available with the <code>rsh-server<\/code> package and runs as a service through xinetd, should be disabled. The <code>rsh<\/code> service can be disabled with the following command:<\/p>\n<pre># chkconfig rsh off<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000216<\/td>\n<td>CCI-000068<\/td>\n<td>high<\/td>\n<td>The rexecd service must not be running.<\/td>\n<td>The rexec service uses unencrypted network communications, which means that data from the login session, including passwords and all other information transmitted during the session, can be stolen by eavesdroppers on the network.<\/td>\n<td>To check that the <code>rexec<\/code> service is disabled in system boot configuration, run the following command:<\/p>\n<pre># chkconfig <code>rexec<\/code> --list<\/pre>\n<p>Output should indicate the <code>rexec<\/code> service has either not been installed, or has been disabled, as shown in the example below:<\/p>\n<pre># chkconfig <code>rexec<\/code> --list\r\n<code>rexec<\/code>       off<\/pre>\n<p>If the service is running, this is a finding.<\/td>\n<td>The <code>rexec<\/code> service, which is available with the <code>rsh-server<\/code> package and runs as a service through xinetd, should be disabled. The <code>rexec<\/code> service can be disabled with the following command:<\/p>\n<pre># chkconfig rexec off<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000218<\/td>\n<td>CCI-001436<\/td>\n<td>high<\/td>\n<td>The rlogind service must not be running.<\/td>\n<td>The rlogin service uses unencrypted network communications, which means that data from the login session, including passwords and all other information transmitted during the session, can be stolen by eavesdroppers on the network.<\/td>\n<td>To check that the <code>rlogin<\/code> service is disabled in system boot configuration, run the following command:<\/p>\n<pre># chkconfig <code>rlogin<\/code> --list<\/pre>\n<p>Output should indicate the <code>rlogin<\/code> service has either not been installed, or has been disabled, as shown in the example below:<\/p>\n<pre># chkconfig <code>rlogin<\/code> --list\r\n<code>rlogin<\/code>       off<\/pre>\n<p>If the service is running, this is a finding.<\/td>\n<td>The <code>rlogin<\/code> service, which is available with the <code>rsh-server<\/code> package and runs as a service through xinetd, should be disabled. The <code>rlogin<\/code> service can be disabled with the following command:<\/p>\n<pre># chkconfig rlogin off<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000220<\/td>\n<td>CCI-000381<\/td>\n<td>medium<\/td>\n<td>The ypserv package must not be installed.<\/td>\n<td>Removing the <code>ypserv<\/code> package decreases the risk of the accidental (or intentional) activation of NIS or NIS+ services.<\/td>\n<td>Run the following command to determine if the <code>ypserv<\/code> package is installed:<\/p>\n<pre># rpm -q ypserv<\/pre>\n<p>If the package is installed, this is a finding.<\/td>\n<td>The <code>ypserv<\/code> package can be uninstalled with the following command:<\/p>\n<pre>$ sudo yum erase ypserv<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000221<\/td>\n<td>CCI-000382<\/td>\n<td>medium<\/td>\n<td>The ypbind service must not be running.<\/td>\n<td>Disabling the <code>ypbind<\/code> service ensures the system is not acting as a client in a NIS or NIS+ domain.<\/td>\n<td>To check that the <code>ypbind<\/code> service is disabled in system boot configuration, run the following command:<\/p>\n<pre># chkconfig <code>ypbind<\/code> --list<\/pre>\n<p>Output should indicate the <code>ypbind<\/code> service has either not been installed, or has been disabled at all runlevels, as shown in the example below:<\/p>\n<pre># chkconfig <code>ypbind<\/code> --list\r\n<code>ypbind<\/code>       0:off   1:off   2:off   3:off   4:off   5:off   6:off<\/pre>\n<p>Run the following command to verify <code>ypbind<\/code> is disabled through current runtime configuration:<\/p>\n<pre># service ypbind status<\/pre>\n<p>If the service is disabled the command will return the following output:<\/p>\n<pre>ypbind is stopped<\/pre>\n<p>If the service is running, this is a finding.<\/td>\n<td>The <code>ypbind<\/code> service, which allows the system to act as a client in a NIS or NIS+ domain, should be disabled. The <code>ypbind<\/code> service can be disabled with the following command:<\/p>\n<pre># chkconfig ypbind off<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000222<\/td>\n<td>CCI-000381<\/td>\n<td>medium<\/td>\n<td>The tftp-server package must not be installed.<\/td>\n<td>Removing the <code>tftp-server<\/code> package decreases the risk of the accidental (or intentional) activation of tftp services.<\/td>\n<td>Run the following command to determine if the <code>tftp-server<\/code> package is installed:<\/p>\n<pre># rpm -q tftp-server<\/pre>\n<p>If the package is installed, this is a finding.<\/td>\n<td>The <code>tftp-server<\/code> package can be removed with the following command:<\/p>\n<pre># yum erase tftp-server<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000223<\/td>\n<td>CCI-001436<\/td>\n<td>medium<\/td>\n<td>The TFTP service must not be running.<\/td>\n<td>Disabling the <code>tftp<\/code> service ensures the system is not acting as a TFTP server, which does not provide encryption or authentication.<\/td>\n<td>To check that the <code>tftp<\/code> service is disabled in system boot configuration, run the following command:<\/p>\n<pre># chkconfig <code>tftp<\/code> --list<\/pre>\n<p>Output should indicate the <code>tftp<\/code> service has either not been installed, or has been disabled at all runlevels, as shown in the example below:<\/p>\n<pre># chkconfig <code>tftp<\/code> --list\r\n<code>tftp<\/code>       0:off   1:off   2:off   3:off   4:off   5:off   6:off<\/pre>\n<p>Run the following command to verify <code>tftp<\/code> is disabled through current runtime configuration:<\/p>\n<pre># service tftp status<\/pre>\n<p>If the service is disabled the command will return the following output:<\/p>\n<pre>tftp is stopped<\/pre>\n<p>If the service is running, this is a finding.<\/td>\n<td>The <code>tftp<\/code> service should be disabled. The <code>tftp<\/code> service can be disabled with the following command:<\/p>\n<pre># chkconfig tftp off<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000224<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The cron service must be running.<\/td>\n<td>Due to its usage for maintenance and security-supporting tasks, enabling the cron daemon is essential.<\/td>\n<td>Run the following command to determine the current status of the <code>crond<\/code> service:<\/p>\n<pre># service crond status<\/pre>\n<p>If the service is enabled, it should return the following:<\/p>\n<pre>crond is running...<\/pre>\n<p>If the service is not running, this is a finding.<\/td>\n<td>The <code>crond<\/code> service is used to execute commands at preconfigured times. It is required by almost all systems to perform necessary maintenance tasks, such as notifying root of system activity. The <code>crond<\/code> service can be enabled with the following command:<\/p>\n<pre># chkconfig --level 2345 crond on<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000227<\/td>\n<td>CCI-000774<\/td>\n<td>high<\/td>\n<td>The SSH daemon must be configured to use only the SSHv2 protocol.<\/td>\n<td>SSH protocol version 1 suffers from design flaws that result in security vulnerabilities and should not be used.<\/td>\n<td>To check which SSH protocol version is allowed, run the following command:<\/p>\n<pre>$ sudo grep Protocol \/etc\/ssh\/sshd_config<\/pre>\n<p>If configured properly, output should be<\/p>\n<pre>Protocol 2<\/pre>\n<p>If it is not, this is a finding.<\/td>\n<td>Only SSH protocol version 2 connections should be permitted. The default setting in <code>\/etc\/ssh\/sshd_config<\/code> is correct, and can be verified by ensuring that the following line appears:<\/p>\n<pre>Protocol 2<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000230<\/td>\n<td>CCI-001133<\/td>\n<td>low<\/td>\n<td>The SSH daemon must set a timeout interval on idle sessions.<\/td>\n<td>Causing idle users to be automatically logged out guards against compromises one system leading trivially to compromises on another.<\/td>\n<td>Run the following command to see what the timeout interval is:<\/p>\n<pre>$ sudo grep ClientAliveInterval \/etc\/ssh\/sshd_config<\/pre>\n<p>If properly configured, the output should be:<\/p>\n<pre>ClientAliveInterval 900<\/pre>\n<p>If it is not, this is a finding.<\/td>\n<td>SSH allows administrators to set an idle timeout interval. After this interval has passed, the idle user will be automatically logged out.<\/p>\n<p>To set an idle timeout interval, edit the following line in <code>\/etc\/ssh\/sshd_config<\/code> as follows:<\/p>\n<pre>ClientAliveInterval <b><\/b><\/pre>\n<p>The timeout <b>interval<\/b> is given in seconds. To have a timeout of 15 minutes, set <b>interval<\/b> to 900.<\/p>\n<p>If a shorter timeout has already been set for the login shell, that value will preempt any SSH setting made here. Keep in mind that some processes may stop SSH from correctly detecting that the user is idle.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000231<\/td>\n<td>CCI-000879<\/td>\n<td>low<\/td>\n<td>The SSH daemon must set a timeout count on idle sessions.<\/td>\n<td>This ensures a user login will be terminated as soon as the <code>ClientAliveCountMax<\/code> is reached.<\/td>\n<td>To ensure the SSH idle timeout will occur when the <code>ClientAliveCountMax<\/code> is set, run the following command:<\/p>\n<pre>$ sudo grep ClientAliveCountMax \/etc\/ssh\/sshd_config<\/pre>\n<p>If properly configured, output should be:<\/p>\n<pre>ClientAliveCountMax 0<\/pre>\n<p>If it is not, this is a finding.<\/td>\n<td>To ensure the SSH idle timeout occurs precisely when the <code>ClientAliveCountMax<\/code> is set, edit <code>\/etc\/ssh\/sshd_config<\/code> as follows:<\/p>\n<pre>ClientAliveCountMax 0<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000234<\/td>\n<td>CCI-000766<\/td>\n<td>medium<\/td>\n<td>The SSH daemon must ignore .rhosts files.<\/td>\n<td>SSH trust relationships mean a compromise on one host can allow an attacker to move trivially to other hosts.<\/td>\n<td>To determine how the SSH daemon&#8217;s <code>IgnoreRhosts<\/code> option is set, run the following command:<\/p>\n<pre xml:space=\"preserve\"># grep -i IgnoreRhosts \/etc\/ssh\/sshd_config<\/pre>\n<p>If no line, a commented line, or a line indicating the value <code>yes<\/code> is returned, then the required value is set. If the required value is not set, this is a finding.<\/td>\n<td>SSH can emulate the behavior of the obsolete rsh command in allowing users to enable insecure access to their accounts via <code>.rhosts<\/code> files.<\/p>\n<p>To ensure this behavior is disabled, add or correct the following line in <code>\/etc\/ssh\/sshd_config<\/code>:<\/p>\n<pre>IgnoreRhosts yes<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000235<\/td>\n<td>CCI-000765<\/td>\n<td>medium<\/td>\n<td>The SSH daemon must not allow host-based authentication.<\/td>\n<td>SSH trust relationships mean a compromise on one host can allow an attacker to move trivially to other hosts.<\/td>\n<td>To determine how the SSH daemon&#8217;s <code>HostbasedAuthentication<\/code> option is set, run the following command:<\/p>\n<pre xml:space=\"preserve\"># grep -i HostbasedAuthentication \/etc\/ssh\/sshd_config<\/pre>\n<p>If no line, a commented line, or a line indicating the value <code>no<\/code> is returned, then the required value is set. If the required value is not set, this is a finding.<\/td>\n<td>SSH&#8217;s cryptographic host-based authentication is more secure than <code>.rhosts<\/code> authentication. However, it is not recommended that hosts unilaterally trust one another, even within an organization.<\/p>\n<p>To disable host-based authentication, add or correct the following line in <code>\/etc\/ssh\/sshd_config<\/code>:<\/p>\n<pre>HostbasedAuthentication no<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000236<\/td>\n<td>CCI-000766<\/td>\n<td>medium<\/td>\n<td>The SSH daemon must not allow host-based authentication.<\/td>\n<td>SSH trust relationships mean a compromise on one host can allow an attacker to move trivially to other hosts.<\/td>\n<td>To determine how the SSH daemon&#8217;s <code>HostbasedAuthentication<\/code> option is set, run the following command:<\/p>\n<pre xml:space=\"preserve\"># grep -i HostbasedAuthentication \/etc\/ssh\/sshd_config<\/pre>\n<p>If no line, a commented line, or a line indicating the value <code>no<\/code> is returned, then the required value is set. If the required value is not set, this is a finding.<\/td>\n<td>SSH&#8217;s cryptographic host-based authentication is more secure than <code>.rhosts<\/code> authentication. However, it is not recommended that hosts unilaterally trust one another, even within an organization.<\/p>\n<p>To disable host-based authentication, add or correct the following line in <code>\/etc\/ssh\/sshd_config<\/code>:<\/p>\n<pre>HostbasedAuthentication no<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000237<\/td>\n<td>CCI-000770<\/td>\n<td>medium<\/td>\n<td>The system must not permit root logins using remote access programs such as ssh.<\/td>\n<td>Permitting direct root login reduces auditable information about who ran privileged commands on the system and also allows direct attack attempts on root&#8217;s password.<\/td>\n<td>To determine how the SSH daemon&#8217;s <code>PermitRootLogin<\/code> option is set, run the following command:<\/p>\n<pre xml:space=\"preserve\"># grep -i PermitRootLogin \/etc\/ssh\/sshd_config<\/pre>\n<p>If a line indicating no is returned, then the required value is set. If the required value is not set, this is a finding.<\/td>\n<td>The root user should never be allowed to login to a system directly over a network. To disable root login via SSH, add or correct the following line in <code>\/etc\/ssh\/sshd_config<\/code>:<\/p>\n<pre>PermitRootLogin no<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000239<\/td>\n<td>CCI-000766<\/td>\n<td>high<\/td>\n<td>The SSH daemon must not allow authentication using an empty password.<\/td>\n<td>Configuring this setting for the SSH daemon provides additional assurance that remote login via SSH will require a password, even in the event of misconfiguration elsewhere.<\/td>\n<td>To determine how the SSH daemon&#8217;s <code>PermitEmptyPasswords<\/code> option is set, run the following command:<\/p>\n<pre xml:space=\"preserve\"># grep -i PermitEmptyPasswords \/etc\/ssh\/sshd_config<\/pre>\n<p>If no line, a commented line, or a line indicating the value <code>no<\/code> is returned, then the required value is set. If the required value is not set, this is a finding.<\/td>\n<td>To explicitly disallow remote login from accounts with empty passwords, add or correct the following line in <code>\/etc\/ssh\/sshd_config<\/code>:<\/p>\n<pre>PermitEmptyPasswords no<\/pre>\n<p>Any accounts with empty passwords should be disabled immediately, and PAM configuration should prevent users from being able to assign themselves empty passwords.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000240<\/td>\n<td>CCI-000048<\/td>\n<td>medium<\/td>\n<td>The SSH daemon must be configured with the Department of Defense (DoD) login banner.<\/td>\n<td>The warning message reinforces policy awareness during the logon process and facilitates possible legal action against attackers. Alternatively, systems whose ownership should not be obvious should ensure usage of a banner that does not provide easy attribution.<\/td>\n<td>To determine how the SSH daemon&#8217;s <code>Banner<\/code> option is set, run the following command:<\/p>\n<pre xml:space=\"preserve\"># grep -i Banner \/etc\/ssh\/sshd_config<\/pre>\n<p>If a line indicating \/etc\/issue is returned, then the required value is set. If the required value is not set, this is a finding.<\/td>\n<td>To enable the warning banner and ensure it is consistent across the system, add or correct the following line in <code>\/etc\/ssh\/sshd_config<\/code>:<\/p>\n<pre>Banner \/etc\/issue<\/pre>\n<p>Another section contains information on how to create an appropriate system-wide warning banner.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000241<\/td>\n<td>CCI-001414<\/td>\n<td>low<\/td>\n<td>The SSH daemon must not permit user environment settings.<\/td>\n<td>SSH environment options potentially allow users to bypass access restriction in some configurations.<\/td>\n<td>To ensure users are not able to present environment daemons, run the following command:<\/p>\n<pre>$ sudo grep PermitUserEnvironment \/etc\/ssh\/sshd_config<\/pre>\n<p>If properly configured, output should be:<\/p>\n<pre>PermitUserEnvironment no<\/pre>\n<p>If it is not, this is a finding.<\/td>\n<td>To ensure users are not able to present environment options to the SSH daemon, add or correct the following line in <code>\/etc\/ssh\/sshd_config<\/code>:<\/p>\n<pre>PermitUserEnvironment no<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000243<\/td>\n<td>CCI-001144<\/td>\n<td>medium<\/td>\n<td>The SSH daemon must be configured to use only FIPS 140-2 approved ciphers.<\/td>\n<td>Approved algorithms should impart some level of confidence in their implementation. These are also required for compliance.<\/td>\n<td>Only FIPS-approved ciphers should be used. To verify that only FIPS-approved ciphers are in use, run the following command:<\/p>\n<pre>$ sudo grep Ciphers \/etc\/ssh\/sshd_config<\/pre>\n<p>The output should contain only those ciphers which are FIPS-approved, namely, the AES and 3DES ciphers. If that is not the case, this is a finding.<\/td>\n<td>Limit the ciphers to those algorithms which are FIPS-approved. Counter (CTR) mode is also preferred over cipher-block chaining (CBC) mode. The following line in <code>\/etc\/ssh\/sshd_config<\/code> demonstrates use of FIPS-approved ciphers:<\/p>\n<pre>Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc,aes192-cbc,aes256-cbc<\/pre>\n<p>The man page <code>sshd_config(5)<\/code> contains a list of supported ciphers.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000244<\/td>\n<td>CCI-001145<\/td>\n<td>medium<\/td>\n<td>The operating system must employ FIPS-validated cryptography to protect unclassified information.<\/td>\n<td>Approved algorithms should impart some level of confidence in their implementation. These are also required for compliance.<\/td>\n<td>Only FIPS-approved ciphers should be used. To verify that only FIPS-approved ciphers are in use, run the following command:<\/p>\n<pre>$ sudo grep Ciphers \/etc\/ssh\/sshd_config<\/pre>\n<p>The output should contain only those ciphers which are FIPS-approved, namely, the AES and 3DES ciphers. If that is not the case, this is a finding.<\/td>\n<td>Limit the ciphers to those algorithms which are FIPS-approved. Counter (CTR) mode is also preferred over cipher-block chaining (CBC) mode. The following line in <code>\/etc\/ssh\/sshd_config<\/code> demonstrates use of FIPS-approved ciphers:<\/p>\n<pre>Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc,aes192-cbc,aes256-cbc<\/pre>\n<p>The man page <code>sshd_config(5)<\/code> contains a list of supported ciphers.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000245<\/td>\n<td>CCI-001146<\/td>\n<td>medium<\/td>\n<td>The operating system must employ NSA-approved cryptography to protect classified information.<\/td>\n<td>Approved algorithms should impart some level of confidence in their implementation. These are also required for compliance.<\/td>\n<td>Only FIPS-approved ciphers should be used. To verify that only FIPS-approved ciphers are in use, run the following command:<\/p>\n<pre>$ sudo grep Ciphers \/etc\/ssh\/sshd_config<\/pre>\n<p>The output should contain only those ciphers which are FIPS-approved, namely, the AES and 3DES ciphers. If that is not the case, this is a finding.<\/td>\n<td>Limit the ciphers to those algorithms which are FIPS-approved. Counter (CTR) mode is also preferred over cipher-block chaining (CBC) mode. The following line in <code>\/etc\/ssh\/sshd_config<\/code> demonstrates use of FIPS-approved ciphers:<\/p>\n<pre>Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc,aes192-cbc,aes256-cbc<\/pre>\n<p>The man page <code>sshd_config(5)<\/code> contains a list of supported ciphers.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000246<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The avahi service must be disabled.<\/td>\n<td>Because the Avahi daemon service keeps an open network port, it is subject to network attacks. Its functionality is convenient but is only appropriate if the local network can be trusted.<\/td>\n<td>To check that the <code>avahi-daemon<\/code> service is disabled in system boot configuration, run the following command:<\/p>\n<pre># chkconfig <code>avahi-daemon<\/code> --list<\/pre>\n<p>Output should indicate the <code>avahi-daemon<\/code> service has either not been installed, or has been disabled at all runlevels, as shown in the example below:<\/p>\n<pre># chkconfig <code>avahi-daemon<\/code> --list\r\n<code>avahi-daemon<\/code>       0:off   1:off   2:off   3:off   4:off   5:off   6:off<\/pre>\n<p>Run the following command to verify <code>avahi-daemon<\/code> is disabled through current runtime configuration:<\/p>\n<pre># service avahi-daemon status<\/pre>\n<p>If the service is disabled the command will return the following output:<\/p>\n<pre>avahi-daemon is stopped<\/pre>\n<p>If the service is running, this is a finding.<\/td>\n<td>The <code>avahi-daemon<\/code> service can be disabled with the following command:<\/p>\n<pre># chkconfig avahi-daemon off<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000247<\/td>\n<td>CCI-000160<\/td>\n<td>medium<\/td>\n<td>The system clock must be synchronized continuously, or at least daily.<\/td>\n<td>Enabling the <code>ntpd<\/code> service ensures that the <code>ntpd<\/code> service will be running and that the system will synchronize its time to any servers specified. This is important whether the system is configured to be a client (and synchronize only its own clock) or it is also acting as an NTP server to other systems. Synchronizing time is essential for authentication services such as Kerberos, but it is also important for maintaining accurate logs and auditing possible security breaches.<\/p>\n<p>The NTP daemon offers all of the functionality of <code>ntpdate<\/code>, which is now deprecated. Additional information on this is available at http:\/\/support.ntp.org\/bin\/view\/Dev\/DeprecatingNtpdate<\/td>\n<td>Run the following command to determine the current status of the <code>ntpd<\/code> service:<\/p>\n<pre># service ntpd status<\/pre>\n<p>If the service is enabled, it should return the following:<\/p>\n<pre>ntpd is running...<\/pre>\n<p>If the service is not running, this is a finding.<\/td>\n<td>The <code>ntpd<\/code> service can be enabled with the following command:<\/p>\n<pre># chkconfig --level 2345 ntpd on<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000248<\/td>\n<td>CCI-000160<\/td>\n<td>medium<\/td>\n<td>The system clock must be synchronized to an authoritative DoD time source.<\/td>\n<td>Synchronizing with an NTP server makes it possible to collate system logs from multiple sources or correlate computer events with real time events.<\/td>\n<td>To verify that a remote NTP service is configured for time synchronization, open the following file:<\/p>\n<pre>\/etc\/ntp.conf<\/pre>\n<p>In the file, there should be a section similar to the following:<\/p>\n<pre>server <i>ntpserver<\/i><\/pre>\n<p>If this is not the case, this is a finding.<\/td>\n<td>To specify a remote NTP server for time synchronization, edit the file <code>\/etc\/ntp.conf<\/code>. Add or correct the following lines, substituting the IP or hostname of a remote NTP server for <em>ntpserver<\/em>:<\/p>\n<pre>server <i>ntpserver<\/i><\/pre>\n<p>This instructs the NTP software to contact that remote server to obtain time data.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000249<\/td>\n<td>CCI-000382<\/td>\n<td>medium<\/td>\n<td>Mail relaying must be restricted.<\/td>\n<td>This ensures <code>postfix<\/code> accepts mail messages (such as cron job reports) from the local system only, and not from the network, which protects it from network attack.<\/td>\n<td>Run the following command to ensure postfix accepts mail messages from only the local system:<\/p>\n<pre>$ grep inet_interfaces \/etc\/postfix\/main.cf<\/pre>\n<p>If properly configured, the output should show only <code>localhost<\/code>. If it does not, this is a finding.<\/td>\n<td>Edit the file <code>\/etc\/postfix\/main.cf<\/code> to ensure that only the following <code>inet_interfaces<\/code> line appears:<\/p>\n<pre>inet_interfaces = localhost<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000252<\/td>\n<td>CCI-001453<\/td>\n<td>medium<\/td>\n<td>If the system is using LDAP for authentication or account information, the system must use a TLS connection using FIPS 140-2 approved cryptographic algorithms.<\/td>\n<td>The ssl directive specifies whether to use ssl or not. If not specified it will default to no. It should be set to start_tls rather than doing LDAP over SSL.<\/td>\n<td>To ensure LDAP is configured to use TLS for all transactions, run the following command:<\/p>\n<pre>$ grep start_tls \/etc\/pam_ldap.conf<\/pre>\n<p>If no lines are returned, this is a finding.<\/td>\n<td>Configure LDAP to enforce TLS use. First, edit the file <code>\/etc\/pam_ldap.conf<\/code>, and add or correct the following lines:<\/p>\n<pre>ssl start_tls<\/pre>\n<p>Then review the LDAP server and ensure TLS has been configured.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000253<\/td>\n<td>CCI-000776<\/td>\n<td>medium<\/td>\n<td>The LDAP client must use a TLS connection using trust certificates signed by the site CA.<\/td>\n<td>The tls_cacertdir or tls_cacertfile directives are required when tls_checkpeer is configured (which is the default for openldap versions 2.1 and up). These directives define the path to the trust certificates signed by the site CA.<\/td>\n<td>To ensure TLS is configured with trust certificates, run the following command:<\/p>\n<pre>$ grep cert \/etc\/pam_ldap.conf<\/pre>\n<p>If there is no output, or the lines are commented out, this is a finding.<\/td>\n<td>Ensure a copy of a trusted CA certificate has been placed in the file <code>\/etc\/pki\/tls\/CA\/cacert.pem<\/code>. Configure LDAP to enforce TLS use and to trust certificates signed by that CA. First, edit the file <code>\/etc\/pam_ldap.conf<\/code>, and add or correct either of the following lines:<\/p>\n<pre>tls_cacertdir \/etc\/pki\/tls\/CA<\/pre>\n<p>or<\/p>\n<pre>tls_cacertfile \/etc\/pki\/tls\/CA\/cacert.pem<\/pre>\n<p>Then review the LDAP server and ensure TLS has been configured.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000256<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The openldap-servers package must not be installed unless required.<\/td>\n<td>Unnecessary packages should not be installed to decrease the attack surface of the system. While this software is clearly essential on an LDAP server, it is not necessary on typical desktop or workstation systems.<\/td>\n<td>To verify the <code>openldap-servers<\/code> package is not installed, run the following command:<\/p>\n<pre>$ rpm -q openldap-servers<\/pre>\n<p>The output should show the following:<\/p>\n<pre>package openldap-servers is not installed<\/pre>\n<p>If it does not, this is a finding.<\/td>\n<td>The <code>openldap-servers<\/code> package should be removed if not in use. Is this machine the OpenLDAP server? If not, remove the package.<\/p>\n<pre>$ sudo yum erase openldap-servers<\/pre>\n<p>The openldap-servers RPM is not installed by default on RHEL 6 machines. It is needed only by the OpenLDAP server, not by the clients which use LDAP for authentication. If the system is not intended for use as an LDAP Server it should be removed.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000257<\/td>\n<td>CCI-000057<\/td>\n<td>medium<\/td>\n<td>The graphical desktop environment must set the idle timeout to no more than 15 minutes.<\/td>\n<td>Setting the idle delay controls when the screensaver will start, and can be combined with screen locking to prevent access from passersby.<\/td>\n<td>To check the current idle time-out value, run the following command:<\/p>\n<pre>$ gconftool-2 -g \/desktop\/gnome\/session\/idle_delay<\/pre>\n<p>If properly configured, the output should be <code>15<\/code>. If it is not, this is a finding.<\/td>\n<td>Run the following command to set the idle time-out value for inactivity in the GNOME desktop to minutes:<\/p>\n<pre>$ sudo gconftool-2 \\\r\n  --direct \\\r\n  --config-source xml:readwrite:\/etc\/gconf\/gconf.xml.mandatory \\\r\n  --type int \\\r\n  --set \/desktop\/gnome\/session\/idle_delay<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000258<\/td>\n<td>CCI-000057<\/td>\n<td>medium<\/td>\n<td>The graphical desktop environment must automatically lock after 15 minutes of inactivity and the system must require user to re-authenticate to unlock the environment.<\/td>\n<td>Enabling idle activation of the screensaver ensures the screensaver will be activated after the idle delay. Applications requiring continuous, real-time screen display (such as network management products) require the login session does not have administrator rights and the display station is located in a controlled-access area.<\/td>\n<td>To check the screensaver mandatory use status, run the following command:<\/p>\n<pre>$ gconftool-2 -g \/apps\/gnome-screensaver\/idle_activation_enabled<\/pre>\n<p>If properly configured, the output should be <code>true<\/code>. If it is not, this is a finding.<\/td>\n<td>Run the following command to activate the screensaver in the GNOME desktop after a period of inactivity:<\/p>\n<pre>$ sudo gconftool-2 --direct \\\r\n  --config-source xml:readwrite:\/etc\/gconf\/gconf.xml.mandatory \\\r\n  --type bool \\\r\n  --set \/apps\/gnome-screensaver\/idle_activation_enabled true<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000259<\/td>\n<td>CCI-000057<\/td>\n<td>medium<\/td>\n<td>The graphical desktop environment must have automatic lock enabled.<\/td>\n<td>Enabling the activation of the screen lock after an idle period ensures password entry will be required in order to access the system, preventing access by passersby.<\/td>\n<td>To check the status of the idle screen lock activation, run the following command:<\/p>\n<pre>$ gconftool-2 -g \/apps\/gnome-screensaver\/lock_enabled<\/pre>\n<p>If properly configured, the output should be <code>true<\/code>. If it is not, this is a finding.<\/td>\n<td>Run the following command to activate locking of the screensaver in the GNOME desktop when it is activated:<\/p>\n<pre>$ sudo gconftool-2 --direct \\\r\n  --config-source xml:readwrite:\/etc\/gconf\/gconf.xml.mandatory \\\r\n  --type bool \\\r\n  --set \/apps\/gnome-screensaver\/lock_enabled true<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000260<\/td>\n<td>CCI-000060<\/td>\n<td>low<\/td>\n<td>The system must display a publicly-viewable pattern during a graphical desktop environment session lock.<\/td>\n<td>Setting the screensaver mode to blank-only conceals the contents of the display from passersby.<\/td>\n<td>To ensure the screensaver is configured to be blank, run the following command:<\/p>\n<pre>$ gconftool-2 -g \/apps\/gnome-screensaver\/mode<\/pre>\n<p>If properly configured, the output should be <code>blank-only<\/code> If it is not, this is a finding.<\/td>\n<td>Run the following command to set the screensaver mode in the GNOME desktop to a blank screen:<\/p>\n<pre>$ sudo gconftool-2 --direct \\\r\n  --config-source xml:readwrite:\/etc\/gconf\/gconf.xml.mandatory \\\r\n  --type string \\\r\n  --set \/apps\/gnome-screensaver\/mode blank-only<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000261<\/td>\n<td>CCI-000382<\/td>\n<td>low<\/td>\n<td>The Automatic Bug Reporting Tool (abrtd) service must not be running.<\/td>\n<td>Mishandling crash data could expose sensitive information about vulnerabilities in software executing on the local machine, as well as sensitive information from within a process&#8217;s address space or registers.<\/td>\n<td>To check that the <code>abrtd<\/code> service is disabled in system boot configuration, run the following command:<\/p>\n<pre># chkconfig <code>abrtd<\/code> --list<\/pre>\n<p>Output should indicate the <code>abrtd<\/code> service has either not been installed, or has been disabled at all runlevels, as shown in the example below:<\/p>\n<pre># chkconfig <code>abrtd<\/code> --list\r\n<code>abrtd<\/code>       0:off   1:off   2:off   3:off   4:off   5:off   6:off<\/pre>\n<p>Run the following command to verify <code>abrtd<\/code> is disabled through current runtime configuration:<\/p>\n<pre># service abrtd status<\/pre>\n<p>If the service is disabled the command will return the following output:<\/p>\n<pre>abrtd is stopped<\/pre>\n<p>If the service is running, this is a finding.<\/td>\n<td>The Automatic Bug Reporting Tool (<code>abrtd<\/code>) daemon collects and reports crash data when an application crash is detected. Using a variety of plugins, abrtd can email crash reports to system administrators, log crash reports to files, or forward crash reports to a centralized issue tracking system such as RHTSupport. The <code>abrtd<\/code> service can be disabled with the following command:<\/p>\n<pre># chkconfig abrtd off<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000262<\/td>\n<td>CCI-000382<\/td>\n<td>low<\/td>\n<td>The atd service must be disabled.<\/td>\n<td>The <code>atd<\/code> service could be used by an unsophisticated insider to carry out activities outside of a normal login session, which could complicate accountability. Furthermore, the need to schedule tasks with <code>at<\/code> or <code>batch<\/code> is not common.<\/td>\n<td>To check that the <code>atd<\/code> service is disabled in system boot configuration, run the following command:<\/p>\n<pre># chkconfig <code>atd<\/code> --list<\/pre>\n<p>Output should indicate the <code>atd<\/code> service has either not been installed, or has been disabled at all runlevels, as shown in the example below:<\/p>\n<pre># chkconfig <code>atd<\/code> --list\r\n<code>atd<\/code>       0:off   1:off   2:off   3:off   4:off   5:off   6:off<\/pre>\n<p>Run the following command to verify <code>atd<\/code> is disabled through current runtime configuration:<\/p>\n<pre># service atd status<\/pre>\n<p>If the service is disabled the command will return the following output:<\/p>\n<pre>atd is stopped<\/pre>\n<p>If the service is running, this is a finding.<\/td>\n<td>The <code>at<\/code> and <code>batch<\/code> commands can be used to schedule tasks that are meant to be executed only once. This allows delayed execution in a manner similar to cron, except that it is not recurring. The daemon <code>atd<\/code> keeps track of tasks scheduled via <code>at<\/code> and <code>batch<\/code>, and executes them at the specified time. The <code>atd<\/code> service can be disabled with the following command:<\/p>\n<pre># chkconfig atd off<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000263<\/td>\n<td>CCI-001250<\/td>\n<td>low<\/td>\n<td>Automated file system mounting tools must not be enabled unless needed.<\/td>\n<td>Disabling the automounter permits the administrator to statically control filesystem mounting through <code>\/etc\/fstab<\/code>.<\/td>\n<td>To check that the <code>autofs<\/code> service is disabled in system boot configuration, run the following command:<\/p>\n<pre># chkconfig <code>autofs<\/code> --list<\/pre>\n<p>Output should indicate the <code>autofs<\/code> service has either not been installed, or has been disabled at all runlevels, as shown in the example below:<\/p>\n<pre># chkconfig <code>autofs<\/code> --list\r\n<code>autofs<\/code>       0:off   1:off   2:off   3:off   4:off   5:off   6:off<\/pre>\n<p>Run the following command to verify <code>autofs<\/code> is disabled through current runtime configuration:<\/p>\n<pre># service autofs status<\/pre>\n<p>If the service is disabled the command will return the following output:<\/p>\n<pre>autofs is stopped<\/pre>\n<p>If the service is running, this is a finding.<\/td>\n<td>The <code>autofs<\/code> daemon mounts and unmounts filesystems, such as user home directories shared via NFS, on demand. In addition, autofs can be used to handle removable media, and the default configuration provides the cdrom device as <code>\/misc\/cd<\/code>. However, this method of providing access to removable media is not common, so autofs can almost always be disabled if NFS is not in use. Even if NFS is required, it may be possible to configure filesystem mounts statically by editing <code>\/etc\/fstab<\/code> rather than relying on the automounter.<\/p>\n<p>The <code>autofs<\/code> service can be disabled with the following command:<\/p>\n<pre># chkconfig autofs off<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000265<\/td>\n<td>CCI-000382<\/td>\n<td>low<\/td>\n<td>The ntpdate service must not be running.<\/td>\n<td>The <code>ntpdate<\/code> service may only be suitable for systems which are rebooted frequently enough that clock drift does not cause problems between reboots. In any event, the functionality of the ntpdate service is now available in the ntpd program and should be considered deprecated.<\/td>\n<td>To check that the <code>ntpdate<\/code> service is disabled in system boot configuration, run the following command:<\/p>\n<pre># chkconfig <code>ntpdate<\/code> --list<\/pre>\n<p>Output should indicate the <code>ntpdate<\/code> service has either not been installed, or has been disabled at all runlevels, as shown in the example below:<\/p>\n<pre># chkconfig <code>ntpdate<\/code> --list\r\n<code>ntpdate<\/code>       0:off   1:off   2:off   3:off   4:off   5:off   6:off<\/pre>\n<p>Run the following command to verify <code>ntpdate<\/code> is disabled through current runtime configuration:<\/p>\n<pre># service ntpdate status<\/pre>\n<p>If the service is disabled the command will return the following output:<\/p>\n<pre>ntpdate is stopped<\/pre>\n<p>If the service is running, this is a finding.<\/td>\n<td>The <code>ntpdate<\/code> service sets the local hardware clock by polling NTP servers when the system boots. It synchronizes to the NTP servers listed in <code>\/etc\/ntp\/step-tickers<\/code> or <code>\/etc\/ntp.conf<\/code> and then sets the local hardware clock to the newly synchronized system time. The <code>ntpdate<\/code> service can be disabled with the following command:<\/p>\n<pre># chkconfig ntpdate off<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000266<\/td>\n<td>CCI-000382<\/td>\n<td>low<\/td>\n<td>The oddjobd service must not be running.<\/td>\n<td>The <code>oddjobd<\/code> service may provide necessary functionality in some environments, and 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.<\/td>\n<td>To check that the <code>oddjobd<\/code> service is disabled in system boot configuration, run the following command:<\/p>\n<pre># chkconfig <code>oddjobd<\/code> --list<\/pre>\n<p>Output should indicate the <code>oddjobd<\/code> service has either not been installed, or has been disabled at all runlevels, as shown in the example below:<\/p>\n<pre># chkconfig <code>oddjobd<\/code> --list\r\n<code>oddjobd<\/code>       0:off   1:off   2:off   3:off   4:off   5:off   6:off<\/pre>\n<p>Run the following command to verify <code>oddjobd<\/code> is disabled through current runtime configuration:<\/p>\n<pre># service oddjobd status<\/pre>\n<p>If the service is disabled the command will return the following output:<\/p>\n<pre>oddjobd is stopped<\/pre>\n<p>If the service is running, this is a finding.<\/td>\n<td>The <code>oddjobd<\/code> service exists to provide an interface and access control mechanism through which specified privileged tasks can run tasks for unprivileged client applications. Communication with <code>oddjobd<\/code> through the system message bus. The <code>oddjobd<\/code> service can be disabled with the following command:<\/p>\n<pre># chkconfig oddjobd off<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000267<\/td>\n<td>CCI-000382<\/td>\n<td>low<\/td>\n<td>The qpidd service must not be running.<\/td>\n<td>The qpidd service is automatically installed when the &#8220;base&#8221; package selection is selected during installation. The qpidd service listens for network connections, which increases the attack surface of the system. If the system is not intended to receive AMQP traffic, then the <code>qpidd<\/code> service is not needed and should be disabled or removed.<\/td>\n<td>To check that the <code>qpidd<\/code> service is disabled in system boot configuration, run the following command:<\/p>\n<pre># chkconfig <code>qpidd<\/code> --list<\/pre>\n<p>Output should indicate the <code>qpidd<\/code> service has either not been installed, or has been disabled at all runlevels, as shown in the example below:<\/p>\n<pre># chkconfig <code>qpidd<\/code> --list\r\n<code>qpidd<\/code>       0:off   1:off   2:off   3:off   4:off   5:off   6:off<\/pre>\n<p>Run the following command to verify <code>qpidd<\/code> is disabled through current runtime configuration:<\/p>\n<pre># service qpidd status<\/pre>\n<p>If the service is disabled the command will return the following output:<\/p>\n<pre>qpidd is stopped<\/pre>\n<p>If the service is running, this is a finding.<\/td>\n<td>The <code>qpidd<\/code> service provides high speed, secure, guaranteed delivery services. It is an implementation of the Advanced Message Queuing Protocol. By default the qpidd service will bind to port 5672 and listen for connection attempts. The <code>qpidd<\/code> service can be disabled with the following command:<\/p>\n<pre># chkconfig qpidd off<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000268<\/td>\n<td>CCI-000382<\/td>\n<td>low<\/td>\n<td>The rdisc service must not be running.<\/td>\n<td>General-purpose systems typically have their network and routing information configured statically by a system administrator. Workstations or some special-purpose systems often use DHCP (instead of IRDP) to retrieve dynamic network configuration information.<\/td>\n<td>To check that the <code>rdisc<\/code> service is disabled in system boot configuration, run the following command:<\/p>\n<pre># chkconfig <code>rdisc<\/code> --list<\/pre>\n<p>Output should indicate the <code>rdisc<\/code> service has either not been installed, or has been disabled at all runlevels, as shown in the example below:<\/p>\n<pre># chkconfig <code>rdisc<\/code> --list\r\n<code>rdisc<\/code>       0:off   1:off   2:off   3:off   4:off   5:off   6:off<\/pre>\n<p>Run the following command to verify <code>rdisc<\/code> is disabled through current runtime configuration:<\/p>\n<pre># service rdisc status<\/pre>\n<p>If the service is disabled the command will return the following output:<\/p>\n<pre>rdisc is stopped<\/pre>\n<p>If the service is running, this is a finding.<\/td>\n<td>The <code>rdisc<\/code> service implements the client side of the ICMP Internet Router Discovery Protocol (IRDP), which allows discovery of routers on the local subnet. If a router is discovered then the local routing table is updated with a corresponding default route. By default this daemon is disabled. The <code>rdisc<\/code> service can be disabled with the following command:<\/p>\n<pre># chkconfig rdisc off<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000269<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>Remote file systems must be mounted with the &#8220;nodev&#8221; option.<\/td>\n<td>Legitimate device files should only exist in the \/dev directory. NFS mounts should not present device files to users.<\/td>\n<td>To verify the <code>nodev<\/code> option is configured for all NFS mounts, run the following command:<\/p>\n<pre>$ mount | grep nfs<\/pre>\n<p>All NFS mounts should show the <code>nodev<\/code> setting in parentheses. This is not applicable if NFS is not implemented. If the setting does not show, this is a finding.<\/td>\n<td>Add the <code>nodev<\/code> option to the fourth column of <code>\/etc\/fstab<\/code> for the line which controls mounting of any NFS mounts.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000270<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>Remote file systems must be mounted with the &#8220;nosuid&#8221; option.<\/td>\n<td>NFS mounts should not present suid binaries to users. Only vendor-supplied suid executables should be installed to their default location on the local filesystem.<\/td>\n<td>To verify the <code>nosuid<\/code> option is configured for all NFS mounts, run the following command:<\/p>\n<pre>$ mount | grep nfs<\/pre>\n<p>All NFS mounts should show the <code>nosuid<\/code> setting in parentheses. This is not applicable if NFS is not implemented. If the setting does not show, this is a finding.<\/td>\n<td>Add the <code>nosuid<\/code> option to the fourth column of <code>\/etc\/fstab<\/code> for the line which controls mounting of any NFS mounts.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000271<\/td>\n<td>CCI-000087<\/td>\n<td>low<\/td>\n<td>The noexec option must be added to removable media partitions.<\/td>\n<td>Allowing users to execute binaries from removable media such as USB keys exposes the system to potential compromise.<\/td>\n<td>To verify that binaries cannot be directly executed from removable media, run the following command:<\/p>\n<pre>$ grep -v noexec \/etc\/fstab<\/pre>\n<p>The resulting output will show partitions which do not have the <code>noexec<\/code> flag. Verify all partitions in the output are not removable media. If removable media partitions are present, this is a finding.<\/td>\n<td>The <code>noexec<\/code> mount option prevents the direct execution of binaries on the mounted filesystem. Preventing the direct execution of binaries from removable media (such as a USB key) provides a defense against malicious software that may be present on such untrusted media. Add the <code>noexec<\/code> option to the fourth column of <code>\/etc\/fstab<\/code> for the line which controls mounting of any removable media partitions.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000272<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The system must use SMB client signing for connecting to samba servers using smbclient.<\/td>\n<td>Packet signing can prevent man-in-the-middle attacks which modify SMB packets in transit.<\/td>\n<td>To verify that Samba clients running smbclient must use packet signing, run the following command:<\/p>\n<pre>$ grep signing \/etc\/samba\/smb.conf<\/pre>\n<p>The output should show:<\/p>\n<pre>client signing = mandatory<\/pre>\n<p>If it is not, this is a finding.<\/td>\n<td>To require samba clients running <code>smbclient<\/code> to use packet signing, add the following to the <code>[global]<\/code> section of the Samba configuration file, <code>\/etc\/samba\/smb.conf<\/code>:<\/p>\n<pre>client signing = mandatory<\/pre>\n<p>Requiring samba clients such as <code>smbclient<\/code> to use packet signing ensures they can only communicate with servers that support packet signing.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000273<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The system must use SMB client signing for connecting to samba servers using mount.cifs.<\/td>\n<td>Packet signing can prevent man-in-the-middle attacks which modify SMB packets in transit.<\/td>\n<td>To verify that Samba clients using mount.cifs must use packet signing, run the following command:<\/p>\n<pre>$ grep sec \/etc\/fstab<\/pre>\n<p>The output should show either <code>krb5i<\/code> or <code>ntlmv2i<\/code> in use. If it does not, this is a finding.<\/td>\n<td>Require packet signing of clients who mount Samba shares using the <code>mount.cifs<\/code> program (e.g., those who specify shares in <code>\/etc\/fstab<\/code>). To do so, ensure signing options (either <code>sec=krb5i<\/code> or <code>sec=ntlmv2i<\/code>) are used.<\/p>\n<p>See the <code>mount.cifs(8)<\/code> man page for more information. A Samba client should only communicate with servers who can support SMB packet signing.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000274<\/td>\n<td>CCI-000200<\/td>\n<td>medium<\/td>\n<td>The system must prohibit the reuse of passwords within twenty-four iterations.<\/td>\n<td>Preventing re-use of previous passwords helps ensure that a compromised password is not re-used by a user.<\/td>\n<td>To verify the password reuse setting is compliant, run the following command:<\/p>\n<pre>$ grep remember \/etc\/pam.d\/system-auth<\/pre>\n<p>The output should show the following at the end of the line:<\/p>\n<pre>remember=24<\/pre>\n<p>If it does not, this is a finding.<\/td>\n<td>Do not allow users to reuse recent passwords. This can be accomplished by using the <code>remember<\/code> option for the <code>pam_unix<\/code> PAM module. In the file <code>\/etc\/pam.d\/system-auth<\/code>, append <code>remember=<\/code> to the line which refers to the <code>pam_unix.so<\/code> module, as shown:<\/p>\n<pre>password sufficient pam_unix.so <i>existing_options<\/i> remember=<\/pre>\n<p>The DoD STIG requirement is 5 passwords.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000275<\/td>\n<td>CCI-001019<\/td>\n<td>low<\/td>\n<td>The operating system must employ cryptographic mechanisms to protect information in storage.<\/td>\n<td>The risk of a system&#8217;s physical compromise, particularly mobile systems such as laptops, places its data at risk of compromise. Encrypting this data mitigates the risk of its loss if the system is lost.<\/td>\n<td>Determine if encryption must be used to protect data on the system. If encryption must be used and is not employed, this is a finding.<\/td>\n<td>Red Hat Enterprise Linux 6 natively supports partition encryption through the Linux Unified Key Setup-on-disk-format (LUKS) technology. The easiest way to encrypt a partition is during installation time.<\/p>\n<p>For manual installations, select the <code>Encrypt<\/code> checkbox during partition creation to encrypt the partition. When this option is selected the system will prompt for a passphrase to use in decrypting the partition. The passphrase will subsequently need to be entered manually every time the system boots.<\/p>\n<p>For automated\/unattended installations, it is possible to use Kickstart by adding the <code>--encrypted<\/code> and <code>--passphrase=<\/code> options to the definition of each partition to be encrypted. For example, the following line would encrypt the root partition:<\/p>\n<pre>part \/ --fstype=ext3 --size=100 --onpart=hda1 --encrypted --passphrase=<i>PASSPHRASE<\/i><\/pre>\n<p>Any <i>PASSPHRASE<\/i> is stored in the Kickstart in plaintext, and the Kickstart must then be protected accordingly. Omitting the <code>--passphrase=<\/code> option from the partition definition will cause the installer to pause and interactively ask for the passphrase during installation.<\/p>\n<p>Detailed information on encrypting partitions using LUKS can be found on the Red Hat Documentation web site:<br \/>\nhttps:\/\/docs.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/6\/html\/Security_Guide\/sect-Security_Guide-LUKS_Disk_Encryption.html<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000276<\/td>\n<td>CCI-001199<\/td>\n<td>low<\/td>\n<td>The operating system must protect the confidentiality and integrity of data at rest.<\/td>\n<td>The risk of a system&#8217;s physical compromise, particularly mobile systems such as laptops, places its data at risk of compromise. Encrypting this data mitigates the risk of its loss if the system is lost.<\/td>\n<td>Determine if encryption must be used to protect data on the system. If encryption must be used and is not employed, this is a finding.<\/td>\n<td>Red Hat Enterprise Linux 6 natively supports partition encryption through the Linux Unified Key Setup-on-disk-format (LUKS) technology. The easiest way to encrypt a partition is during installation time.<\/p>\n<p>For manual installations, select the <code>Encrypt<\/code> checkbox during partition creation to encrypt the partition. When this option is selected the system will prompt for a passphrase to use in decrypting the partition. The passphrase will subsequently need to be entered manually every time the system boots.<\/p>\n<p>For automated\/unattended installations, it is possible to use Kickstart by adding the <code>--encrypted<\/code> and <code>--passphrase=<\/code> options to the definition of each partition to be encrypted. For example, the following line would encrypt the root partition:<\/p>\n<pre>part \/ --fstype=ext3 --size=100 --onpart=hda1 --encrypted --passphrase=<i>PASSPHRASE<\/i><\/pre>\n<p>Any <i>PASSPHRASE<\/i> is stored in the Kickstart in plaintext, and the Kickstart must then be protected accordingly. Omitting the <code>--passphrase=<\/code> option from the partition definition will cause the installer to pause and interactively ask for the passphrase during installation.<\/p>\n<p>Detailed information on encrypting partitions using LUKS can be found on the Red Hat Documentation web site:<br \/>\nhttps:\/\/docs.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/6\/html\/Security_Guide\/sect-Security_Guide-LUKS_Disk_Encryption.html<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000277<\/td>\n<td>CCI-001200<\/td>\n<td>low<\/td>\n<td>The operating system must employ cryptographic mechanisms to prevent unauthorized disclosure of data at rest unless otherwise protected by alternative physical measures.<\/td>\n<td>The risk of a system&#8217;s physical compromise, particularly mobile systems such as laptops, places its data at risk of compromise. Encrypting this data mitigates the risk of its loss if the system is lost.<\/td>\n<td>Determine if encryption must be used to protect data on the system. If encryption must be used and is not employed, this is a finding.<\/td>\n<td>Red Hat Enterprise Linux 6 natively supports partition encryption through the Linux Unified Key Setup-on-disk-format (LUKS) technology. The easiest way to encrypt a partition is during installation time.<\/p>\n<p>For manual installations, select the <code>Encrypt<\/code> checkbox during partition creation to encrypt the partition. When this option is selected the system will prompt for a passphrase to use in decrypting the partition. The passphrase will subsequently need to be entered manually every time the system boots.<\/p>\n<p>For automated\/unattended installations, it is possible to use Kickstart by adding the <code>--encrypted<\/code> and <code>--passphrase=<\/code> options to the definition of each partition to be encrypted. For example, the following line would encrypt the root partition:<\/p>\n<pre>part \/ --fstype=ext3 --size=100 --onpart=hda1 --encrypted --passphrase=<i>PASSPHRASE<\/i><\/pre>\n<p>Any <i>PASSPHRASE<\/i> is stored in the Kickstart in plaintext, and the Kickstart must then be protected accordingly. Omitting the <code>--passphrase=<\/code> option from the partition definition will cause the installer to pause and interactively ask for the passphrase during installation.<\/p>\n<p>Detailed information on encrypting partitions using LUKS can be found on the Red Hat Documentation web site:<br \/>\nhttps:\/\/docs.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/6\/html\/Security_Guide\/sect-Security_Guide-LUKS_Disk_Encryption.html<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000282<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>There must be no world-writable files on the system.<\/td>\n<td>Data in world-writable files can be modified by any user on the system. In almost all circumstances, files can be configured using a combination of user and group permissions to support whatever legitimate access is needed without the risk caused by world-writable files.<\/td>\n<td>To find world-writable files, run the following command:<\/p>\n<pre>$ sudo find \/ -xdev -type f -perm -002<\/pre>\n<p>If there is output, this is a finding.<\/td>\n<td>It is generally a good idea to remove global (other) write access to a file when it is discovered. However, check with documentation for specific applications before making changes. Also, monitor for recurring world-writable files, as these may be symptoms of a misconfigured application or user account.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000284<\/td>\n<td>CCI-001668<\/td>\n<td>high<\/td>\n<td>The system must use and update a DoD-approved virus scan program.<\/td>\n<td>Virus scanning software can be used to detect if a system has been compromised by computer viruses, as well as to limit their spread to other systems.<\/td>\n<td>Inspect the system for a cron job or system service which executes a virus scanning tool regularly.<br \/>\n<!-- this should be handled as DoD-specific text in a future revision --> To verify the McAfee VSEL system service is operational, run the following command:<\/p>\n<pre>$ sudo \/sbin\/service nails status<\/pre>\n<p>To check on the age of uvscan virus definition files, run the following command:<\/p>\n<pre>$ sudo cd \/opt\/NAI\/LinuxShield\/engine\/dat\r\n$ sudo ls -la avvscan.dat avvnames.dat avvclean.dat<\/pre>\n<p>If virus scanning software does not run continuously, or at least daily, or has signatures that are out of date, this is a finding.<\/td>\n<td>Install virus scanning software, which uses signatures to search for the presence of viruses on the filesystem. The McAfee VirusScan Enterprise for Linux virus scanning tool is provided for DoD systems. Ensure virus definition files are no older than 7 days, or their last release. <!-- need info here on where DoD admins can go to get this -->Configure the virus scanning software to perform scans dynamically on all accessed files. If this is not possible, configure the system to scan all altered files on the system on a daily basis. If the system processes inbound SMTP mail, configure the virus scanner to scan all received mail. <!-- what's the basis for the IAO language? would not failure of a check\n     imply a discussion, for every check in this document, \n     with the IAO (or SSO or ISSO or ISSM or whatever is the right acronym in your\n     particular neighborhood) should occur? --><\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000285<\/td>\n<td>CCI-001263<\/td>\n<td>medium<\/td>\n<td>The system must have a host-based intrusion detection tool installed.<\/td>\n<td>Host-based intrusion detection tools provide a system-level defense when an intruder gains access to a system or network.<\/td>\n<td>Inspect the system to determine if intrusion detection software has been installed. Verify this intrusion detection software is active. If no host-based intrusion detection tools are installed, this is a finding.<\/td>\n<td>The base Red Hat platform already includes a sophisticated auditing system that can detect intruder activity, as well as SELinux, which provides host-based intrusion prevention capabilities by confining privileged programs and user sessions which may become compromised.<br \/>\nIn DoD environments, supplemental intrusion detection tools, such as, the McAfee Host-based Security System, are available to integrate with existing infrastructure. When these supplemental tools interfere with the proper functioning of SELinux, SELinux takes precedence.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000286<\/td>\n<td>CCI-000366<\/td>\n<td>high<\/td>\n<td>The x86 Ctrl-Alt-Delete key sequence must be disabled.<\/td>\n<td>A locally logged-in user who presses Ctrl-Alt-Del, when at the console, can reboot the system. If accidentally pressed, as could happen in the case of mixed OS environment, this can create the risk of short-term loss of availability of systems due to unintentional reboot. In the GNOME graphical environment, risk of unintentional reboot from the Ctrl-Alt-Del sequence is reduced because the user will be prompted before any action is taken. NOTE: When updating the <code>initscripts<\/code> package on a Red Hat Enterprise Linux 6 system, custom changes to <code>\/etc\/init\/control-alt-delete.conf<\/code> may be overwritten. Refer to <b>https:\/\/access.redhat.com\/site\/solutions\/70464<\/b> for additional information.<\/td>\n<td>To ensure the system is configured to log a message instead of rebooting the system when Ctrl-Alt-Del is pressed, ensure the following line is in <code>\/etc\/init\/control-alt-delete.conf<\/code>:<\/p>\n<pre>exec \/usr\/bin\/logger -p security.info \"Control-Alt-Delete pressed\"<\/pre>\n<p>If the system is configured to run the shutdown command, this is a finding.<\/td>\n<td>By default, the system includes the following line in <code>\/etc\/init\/control-alt-delete.conf<\/code> to reboot the system when the Ctrl-Alt-Del key sequence is pressed:<\/p>\n<pre>exec \/sbin\/shutdown -r now \"Control-Alt-Delete pressed\"<\/pre>\n<p>To configure the system to log a message instead of rebooting the system, alter that line to read as follows:<\/p>\n<pre>exec \/usr\/bin\/logger -p security.info \"Control-Alt-Delete pressed\"<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000287<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The postfix service must be enabled for mail delivery.<\/td>\n<td>Local mail delivery is essential to some system maintenance and notification tasks.<\/td>\n<td>Run the following command to determine the current status of the <code>postfix<\/code> service:<\/p>\n<pre># service postfix status<\/pre>\n<p>If the service is enabled, it should return the following:<\/p>\n<pre>postfix is running...<\/pre>\n<p>If the system is not a cross domain solution and the service is not enabled, this is a finding.<\/td>\n<td>The Postfix mail transfer agent is used for local mail delivery within the system. The default configuration only listens for connections to the default SMTP port (port 25) on the loopback interface (127.0.0.1). It is recommended to leave this service enabled for local mail delivery. The <code>postfix<\/code> service can be enabled with the following command:<\/p>\n<pre># chkconfig --level 2345 postfix on<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000288<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The sendmail package must be removed.<\/td>\n<td>The sendmail software was not developed with security in mind and its design prevents it from being effectively contained by SELinux. Postfix should be used instead.<\/td>\n<td>Run the following command to determine if the <code>sendmail<\/code> package is installed:<\/p>\n<pre># rpm -q sendmail<\/pre>\n<p>If the package is installed, this is a finding.<\/td>\n<td>Sendmail is not the default mail transfer agent and is not installed by default. The <code>sendmail<\/code> package can be removed with the following command:<\/p>\n<pre># yum erase sendmail<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000289<\/td>\n<td>CCI-000382<\/td>\n<td>low<\/td>\n<td>The netconsole service must be disabled unless required.<\/td>\n<td>The <code>netconsole<\/code> service is not necessary unless there is a need to debug kernel panics, which is not common.<\/td>\n<td>To check that the <code>netconsole<\/code> service is disabled in system boot configuration, run the following command:<\/p>\n<pre># chkconfig <code>netconsole<\/code> --list<\/pre>\n<p>Output should indicate the <code>netconsole<\/code> service has either not been installed, or has been disabled at all runlevels, as shown in the example below:<\/p>\n<pre># chkconfig <code>netconsole<\/code> --list\r\n<code>netconsole<\/code>       0:off   1:off   2:off   3:off   4:off   5:off   6:off<\/pre>\n<p>Run the following command to verify <code>netconsole<\/code> is disabled through current runtime configuration:<\/p>\n<pre># service netconsole status<\/pre>\n<p>If the service is disabled the command will return the following output:<\/p>\n<pre>netconsole is stopped<\/pre>\n<p>If the service is running, this is a finding.<\/td>\n<td>The <code>netconsole<\/code> service is responsible for loading the netconsole kernel module, which logs kernel printk messages over UDP to a syslog server. This allows debugging of problems where disk logging fails and serial consoles are impractical. The <code>netconsole<\/code> service can be disabled with the following command:<\/p>\n<pre># chkconfig netconsole off<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000290<\/td>\n<td>CCI-001436<\/td>\n<td>medium<\/td>\n<td>X Windows must not be enabled unless required.<\/td>\n<td>Unnecessary services should be disabled to decrease the attack surface of the system.<\/td>\n<td>To verify the default runlevel is 3, run the following command:<\/p>\n<pre>$ grep initdefault \/etc\/inittab<\/pre>\n<p>The output should show the following:<\/p>\n<pre>id:3:initdefault:<\/pre>\n<p>If it does not, this is a finding.<\/td>\n<td>Setting the system&#8217;s runlevel to 3 will prevent automatic startup of the X server. To do so, ensure the following line in <code>\/etc\/inittab<\/code> features a <code>3<\/code> as shown:<\/p>\n<pre>id:3:initdefault:<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000291<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The xorg-x11-server-common (X Windows) package must not be installed, unless required.<\/td>\n<td>Unnecessary packages should not be installed to decrease the attack surface of the system.<\/td>\n<td>To ensure the X Windows package group is removed, run the following command:<\/p>\n<pre>$ rpm -qi xorg-x11-server-common<\/pre>\n<p>The output should be:<\/p>\n<pre>package xorg-x11-server-common is not installed<\/pre>\n<p>If it is not, this is a finding.<\/td>\n<td>Removing all packages which constitute the X Window System ensures users or malicious software cannot start X. To do so, run the following command:<\/p>\n<pre>$ sudo yum groupremove \"X Window System\"<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000292<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The DHCP client must be disabled if not needed.<\/td>\n<td>DHCP relies on trusting the local network. If the local network is not trusted, then it should not be used. However, the automatic configuration provided by DHCP is commonly used and the alternative, manual configuration, presents an unacceptable burden in many circumstances.<\/td>\n<td>To verify that DHCP is not being used, examine the following file for each interface:<\/p>\n<pre># \/etc\/sysconfig\/network-scripts\/ifcfg-<i>interface<\/i><\/pre>\n<p>Look for the following:<\/p>\n<pre>BOOTPROTO=none<\/pre>\n<p>and the following, substituting the appropriate values based on your site&#8217;s addressing scheme:<\/p>\n<pre>NETMASK=255.255.255.0\r\nIPADDR=192.168.1.2\r\nGATEWAY=192.168.1.1<\/pre>\n<p>If it does not, this is a finding.<\/td>\n<td>For each interface on the system (e.g. eth0), edit <code>\/etc\/sysconfig\/network-scripts\/ifcfg-<i>interface<\/i><\/code> and make the following changes:<\/p>\n<ul>\n<li>Correct the BOOTPROTO line to read:\n<pre>BOOTPROTO=none<\/pre>\n<\/li>\n<li>Add or correct the following lines, substituting the appropriate values based on your site&#8217;s addressing scheme:\n<pre>NETMASK=255.255.255.0\r\nIPADDR=192.168.1.2\r\nGATEWAY=192.168.1.1<\/pre>\n<\/li>\n<\/ul>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000294<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>All GIDs referenced in \/etc\/passwd must be defined in \/etc\/group<\/td>\n<td>Inconsistency in GIDs between <code>\/etc\/passwd<\/code> and <code>\/etc\/group<\/code> could lead to a user having unintended rights.<\/td>\n<td>To ensure all GIDs referenced in <code>\/etc\/passwd<\/code> are defined in <code>\/etc\/group<\/code>, run the following command:<\/p>\n<pre>$ sudo pwck -qr<\/pre>\n<p>There should be no output. If there is output, this is a finding.<\/td>\n<td>Add a group to the system for each GID referenced without a corresponding group.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000296<\/td>\n<td>CCI-000804<\/td>\n<td>low<\/td>\n<td>All accounts on the system must have unique user or account names<\/td>\n<td>Unique usernames allow for accountability on the system.<\/td>\n<td>Run the following command to check for duplicate account names:<\/p>\n<pre>$ sudo pwck -qr<\/pre>\n<p>If there are no duplicate names, no line will be returned. If a line is returned, this is a finding.<\/td>\n<td>Change usernames, or delete accounts, so each has a unique name.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000299<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The system must require passwords to contain no more than three consecutive repeating characters.<\/td>\n<td>Passwords with excessive repeating characters may be more vulnerable to password-guessing attacks.<\/td>\n<td>To check the maximum value for consecutive repeating characters, run the following command:<\/p>\n<pre>$ grep pam_cracklib \/etc\/pam.d\/system-auth<\/pre>\n<p>Look for the value of the <code>maxrepeat<\/code> parameter. The DoD requirement is 3. If maxrepeat is not found or not set to the required value, this is a finding.<\/td>\n<td>The pam_cracklib module&#8217;s <code>maxrepeat<\/code> parameter controls requirements for consecutive repeating characters. When set to a positive number, it will reject passwords which contain more than that number of consecutive characters. Add <code>maxrepeat=<\/code> after pam_cracklib.so to prevent a run of ( + 1) or more identical characters.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000300<\/td>\n<td>CCI-000224<\/td>\n<td>low<\/td>\n<td>All files and directories must have a valid owner.<\/td>\n<td>Unowned files do not directly imply a security problem, but they are generally a sign that something is amiss. They may be caused by an intruder, by incorrect software installation or draft software removal, or by failure to remove all files belonging to a deleted account. The files should be repaired so they will not cause problems when accounts are created in the future, and the cause should be discovered and addressed.<\/td>\n<td>The following command will discover and print any files on local partitions which do not belong to a valid user. Run it once for each local partition <i>PART<\/i>:<\/p>\n<pre>$ sudo find <i>PART<\/i> -xdev -nouser -print<\/pre>\n<p>If files exist that are not owned by a valid user, this is a finding.<\/td>\n<td>If any files are not owned by a user, then the cause of their lack of ownership should be investigated. Following this, the files should be deleted or assigned to an appropriate user.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000301<\/td>\n<td>CCI-000224<\/td>\n<td>low<\/td>\n<td>All files must be owned by a group.<\/td>\n<td>Unowned files do not directly imply a security problem, but they are generally a sign that something is amiss. They may be caused by an intruder, by incorrect software installation or draft software removal, or by failure to remove all files belonging to a deleted account. The files should be repaired so they will not cause problems when accounts are created in the future, and the cause should be discovered and addressed.<\/td>\n<td>The following command will discover and print any files on local partitions which do not belong to a valid group. Run it once for each local partition <i>PART<\/i>:<\/p>\n<pre>$ sudo find <i>PART<\/i> -xdev -nogroup -print<\/pre>\n<p>If there is output, this is a finding.<\/td>\n<td>If any files are not owned by a group, then the cause of their lack of group-ownership should be investigated. Following this, the files should be deleted or assigned to an appropriate group.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000302<\/td>\n<td>CCI-000374<\/td>\n<td>medium<\/td>\n<td>A file integrity tool must be used at least weekly to check for unauthorized file changes, particularly the addition of unauthorized system libraries or binaries, or for unauthorized modification to authorized system libraries or binaries.<\/td>\n<td>By default, AIDE does not install itself for periodic execution. Periodically running AIDE is necessary to reveal unexpected changes in installed files.<\/td>\n<td>To determine that periodic AIDE execution has been scheduled, run the following command:<\/p>\n<pre>$ grep aide \/etc\/crontab<\/pre>\n<p>If there is no output, this is a finding.<\/td>\n<td>To implement a daily execution of AIDE at 4:05am using cron, add the following line to <code>\/etc\/crontab<\/code>:<\/p>\n<pre>05 4 * * * root \/usr\/sbin\/aide --check<\/pre>\n<p>AIDE can be executed periodically through other means; this is merely one example.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000303<\/td>\n<td>CCI-000416<\/td>\n<td>medium<\/td>\n<td>The operating system must employ automated mechanisms, per organization defined frequency, to detect the addition of unauthorized components\/devices into the operating system.<\/td>\n<td>By default, AIDE does not install itself for periodic execution. Periodically running AIDE is necessary to reveal unexpected changes in installed files.<\/td>\n<td>To determine that periodic AIDE execution has been scheduled, run the following command:<\/p>\n<pre>$ grep aide \/etc\/crontab<\/pre>\n<p>If there is no output, this is a finding.<\/td>\n<td>To implement a daily execution of AIDE at 4:05am using cron, add the following line to <code>\/etc\/crontab<\/code>:<\/p>\n<pre>05 4 * * * root \/usr\/sbin\/aide --check<\/pre>\n<p>AIDE can be executed periodically through other means; this is merely one example.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000304<\/td>\n<td>CCI-001069<\/td>\n<td>medium<\/td>\n<td>The operating system must employ automated mechanisms to detect the presence of unauthorized software on organizational information systems and notify designated organizational officials in accordance with the organization defined frequency.<\/td>\n<td>By default, AIDE does not install itself for periodic execution. Periodically running AIDE is necessary to reveal unexpected changes in installed files.<\/td>\n<td>To determine that periodic AIDE execution has been scheduled, run the following command:<\/p>\n<pre>$ grep aide \/etc\/crontab<\/pre>\n<p>If there is no output, this is a finding.<\/td>\n<td>To implement a daily execution of AIDE at 4:05am using cron, add the following line to <code>\/etc\/crontab<\/code>:<\/p>\n<pre>05 4 * * * root \/usr\/sbin\/aide --check<\/pre>\n<p>AIDE can be executed periodically through other means; this is merely one example.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000305<\/td>\n<td>CCI-001263<\/td>\n<td>medium<\/td>\n<td>The operating system must provide a near real-time alert when any of the organization defined list of compromise or potential compromise indicators occurs.<\/td>\n<td>By default, AIDE does not install itself for periodic execution. Periodically running AIDE is necessary to reveal unexpected changes in installed files.<\/td>\n<td>To determine that periodic AIDE execution has been scheduled, run the following command:<\/p>\n<pre>$ grep aide \/etc\/crontab<\/pre>\n<p>If there is no output, this is a finding.<\/td>\n<td>To implement a daily execution of AIDE at 4:05am using cron, add the following line to <code>\/etc\/crontab<\/code>:<\/p>\n<pre>05 4 * * * root \/usr\/sbin\/aide --check<\/pre>\n<p>AIDE can be executed periodically through other means; this is merely one example.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000306<\/td>\n<td>CCI-001297<\/td>\n<td>medium<\/td>\n<td>The operating system must detect unauthorized changes to software and information.<\/td>\n<td>By default, AIDE does not install itself for periodic execution. Periodically running AIDE is necessary to reveal unexpected changes in installed files.<\/td>\n<td>To determine that periodic AIDE execution has been scheduled, run the following command:<\/p>\n<pre>$ grep aide \/etc\/crontab<\/pre>\n<p>If there is no output, this is a finding.<\/td>\n<td>To implement a daily execution of AIDE at 4:05am using cron, add the following line to <code>\/etc\/crontab<\/code>:<\/p>\n<pre>05 4 * * * root \/usr\/sbin\/aide --check<\/pre>\n<p>AIDE can be executed periodically through other means; this is merely one example.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000307<\/td>\n<td>CCI-001589<\/td>\n<td>medium<\/td>\n<td>The operating system must ensure unauthorized, security-relevant configuration changes detected are tracked.<\/td>\n<td>By default, AIDE does not install itself for periodic execution. Periodically running AIDE is necessary to reveal unexpected changes in installed files.<\/td>\n<td>To determine that periodic AIDE execution has been scheduled, run the following command:<\/p>\n<pre>$ grep aide \/etc\/crontab<\/pre>\n<p>If there is no output, this is a finding.<\/td>\n<td>To implement a daily execution of AIDE at 4:05am using cron, add the following line to <code>\/etc\/crontab<\/code>:<\/p>\n<pre>05 4 * * * root \/usr\/sbin\/aide --check<\/pre>\n<p>AIDE can be executed periodically through other means; this is merely one example.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000308<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>Process core dumps must be disabled unless needed.<\/td>\n<td>A core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.<\/td>\n<td>To verify that core dumps are disabled for all users, run the following command:<\/p>\n<pre>$ grep core \/etc\/security\/limits.conf<\/pre>\n<p>The output should be:<\/p>\n<pre>*     hard   core    0<\/pre>\n<p>If it is not, this is a finding.<\/td>\n<td>To disable core dumps for all users, add the following line to <code>\/etc\/security\/limits.conf<\/code>:<\/p>\n<pre>*     hard   core    0<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000309<\/td>\n<td>CCI-000764<\/td>\n<td>high<\/td>\n<td>The NFS server must not have the insecure file locking option enabled.<\/td>\n<td>Allowing insecure file locking could allow for sensitive data to be viewed or edited by an unauthorized user.<\/td>\n<td>To verify insecure file locking has been disabled, run the following command:<\/p>\n<pre>$ grep insecure_locks \/etc\/exports<\/pre>\n<p>If there is output, this is a finding.<\/td>\n<td>By default the NFS server requires secure file-lock requests, which require credentials from the client in order to lock a file. Most NFS clients send credentials with file lock requests, however, there are a few clients that do not send credentials when requesting a file-lock, allowing the client to only be able to lock world-readable files. To get around this, the <code>insecure_locks<\/code> option can be used so these clients can access the desired export. This poses a security risk by potentially allowing the client access to data for which it does not have authorization. Remove any instances of the <code>insecure_locks<\/code> option from the file <code>\/etc\/exports<\/code>.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000311<\/td>\n<td>CCI-000143<\/td>\n<td>medium<\/td>\n<td>The audit system must provide a warning when allocated audit record storage volume reaches a documented percentage of maximum audit record storage capacity.<\/td>\n<td>Notifying administrators of an impending disk space problem may allow them to take corrective action prior to any disruption.<\/td>\n<td>Inspect <code>\/etc\/audit\/auditd.conf<\/code> and locate the following line to determine if the system is configured to email the administrator when disk space is starting to run low: <code>$ sudo grep space_left_action \/etc\/audit\/auditd.conf<\/code><\/p>\n<pre>space_left_action<\/pre>\n<p>Acceptable values are <code>email<\/code>, <code>suspend<\/code>, <code>single<\/code>, and <code>halt<\/code>. If the system is not configured to send an email to the system administrator when disk space is starting to run low, this is a finding.<\/td>\n<td>The <code>auditd<\/code> service can be configured to take an action when disk space <i>starts<\/i> to run low. Edit the file <code>\/etc\/audit\/auditd.conf<\/code>. Modify the following line, substituting <i>ACTION<\/i> appropriately:<\/p>\n<pre>space_left_action = <i>ACTION<\/i><\/pre>\n<p>Possible values for <i>ACTION<\/i> are described in the <code>auditd.conf<\/code> man page. These include:<\/p>\n<ul>\n<li><code>ignore<\/code><\/li>\n<li><code>syslog<\/code><\/li>\n<li><code>email<\/code><\/li>\n<li><code>exec<\/code><\/li>\n<li><code>suspend<\/code><\/li>\n<li><code>single<\/code><\/li>\n<li><code>halt<\/code><\/li>\n<\/ul>\n<p>Set this to <code>email<\/code> (instead of the default, which is <code>suspend<\/code>) as it is more likely to get prompt attention. Acceptable values also include <code>suspend<\/code>, <code>single<\/code>, and <code>halt<\/code>.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000313<\/td>\n<td>CCI-000139<\/td>\n<td>medium<\/td>\n<td>The audit system must identify staff members to receive notifications of audit log storage volume capacity issues.<\/td>\n<td>Email sent to the root account is typically aliased to the administrators of the system, who can take appropriate action.<\/td>\n<td>Inspect <code>\/etc\/audit\/auditd.conf<\/code> and locate the following line to determine if the system is configured to send email to an account when it needs to notify an administrator:<\/p>\n<pre>action_mail_acct = root<\/pre>\n<p>If auditd is not configured to send emails per identified actions, this is a finding.<\/td>\n<td>The <code>auditd<\/code> service can be configured to send email to a designated account in certain situations. Add or correct the following line in <code>\/etc\/audit\/auditd.conf<\/code> to ensure that administrators are notified via email for those situations:<\/p>\n<pre>action_mail_acct =<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000315<\/td>\n<td>CCI-000085<\/td>\n<td>medium<\/td>\n<td>The Bluetooth kernel module must be disabled.<\/td>\n<td>If Bluetooth functionality must be disabled, preventing the kernel from loading the kernel module provides an additional safeguard against its activation.<\/td>\n<td>If the system is configured to prevent the loading of the <code>bluetooth<\/code> kernel module, it will contain lines inside any file in <code>\/etc\/modprobe.d<\/code> or the deprecated<code>\/etc\/modprobe.conf<\/code>. These lines instruct the module loading system to run another program (such as <code>\/bin\/false<\/code>) upon a module <code>install<\/code> event. Run the following command to search for such lines in all files in <code>\/etc\/modprobe.d<\/code> and the deprecated <code>\/etc\/modprobe.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">$ grep -r bluetooth \/etc\/modprobe.conf \/etc\/modprobe.d<\/pre>\n<p>If the system is configured to prevent the loading of the <code>net-pf-31<\/code> kernel module, it will contain lines inside any file in <code>\/etc\/modprobe.d<\/code> or the deprecated<code>\/etc\/modprobe.conf<\/code>. These lines instruct the module loading system to run another program (such as <code>\/bin\/false<\/code>) upon a module <code>install<\/code> event. Run the following command to search for such lines in all files in <code>\/etc\/modprobe.d<\/code> and the deprecated <code>\/etc\/modprobe.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">$ grep -r net-pf-31 \/etc\/modprobe.conf \/etc\/modprobe.d<\/pre>\n<p>If no line is returned, this is a finding.<\/td>\n<td>The kernel&#8217;s module loading system can be configured to prevent loading of the Bluetooth module. Add the following to the appropriate <code>\/etc\/modprobe.d<\/code> configuration file to prevent the loading of the Bluetooth module:<\/p>\n<pre>install net-pf-31 \/bin\/false\r\ninstall bluetooth \/bin\/false<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000317<\/td>\n<td>CCI-001250<\/td>\n<td>medium<\/td>\n<td>The system must have USB Mass Storage disabled unless needed.<\/td>\n<td>USB storage devices such as thumb drives can be used to introduce malicious software.<\/td>\n<td>If the system is configured to prevent the loading of the <code>usb-storage<\/code> kernel module, it will contain lines inside any file in <code>\/etc\/modprobe.d<\/code> or the deprecated<code>\/etc\/modprobe.conf<\/code>. These lines instruct the module loading system to run another program (such as <code>\/bin\/false<\/code>) upon a module <code>install<\/code> event. Run the following command to search for such lines in all files in <code>\/etc\/modprobe.d<\/code> and the deprecated <code>\/etc\/modprobe.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">$ grep -r usb-storage \/etc\/modprobe.conf \/etc\/modprobe.d<\/pre>\n<p>If no line is returned, this is a finding.<\/td>\n<td>To prevent USB storage devices from being used, configure the kernel module loading system to prevent automatic loading of the USB storage driver. To configure the system to prevent the <code>usb-storage<\/code> kernel module from being loaded, add the following line to a file in the directory <code>\/etc\/modprobe.d<\/code>:<\/p>\n<pre xml:space=\"preserve\">install usb-storage \/bin\/false<\/pre>\n<p>This will prevent the <code>modprobe<\/code> program from loading the <code>usb-storage<\/code> module, but will not prevent an administrator (or another program) from using the <code>insmod<\/code> program to load the module manually.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000319<\/td>\n<td>CCI-000054<\/td>\n<td>low<\/td>\n<td>The system must limit users to 10 simultaneous system logins, or a site-defined number, in accordance with operational requirements.<\/td>\n<td>Limiting simultaneous user logins can insulate the system from denial of service problems caused by excessive logins. Automated login processes operating improperly or maliciously may result in an exceptional number of simultaneous login sessions.<\/td>\n<td>Run the following command to ensure the <code>maxlogins<\/code> value is configured for all users on the system:<\/p>\n<pre>$ grep \"maxlogins\" \/etc\/security\/limits.conf<\/pre>\n<p>You should receive output similar to the following:<\/p>\n<pre>*\t\thard\tmaxlogins\t10<\/pre>\n<p>If it is not similar, this is a finding.<\/td>\n<td>Limiting the number of allowed users and sessions per user can limit risks related to Denial of Service attacks. This addresses concurrent sessions for a single account and does not address concurrent sessions by a single user via multiple accounts. The DoD requirement is 10. To set the number of concurrent sessions per user add the following line in <code>\/etc\/security\/limits.conf<\/code>:<\/p>\n<pre>* hard maxlogins<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000320<\/td>\n<td>CCI-001109<\/td>\n<td>medium<\/td>\n<td>The system&#8217;s local firewall must implement a deny-all, allow-by-exception policy for forwarded packets.<\/td>\n<td>In <code>iptables<\/code>, the default policy is applied only after all the applicable rules in the table are examined for a match. Setting the default policy to <code>DROP<\/code> implements proper design for a firewall, i.e. any packets which are not explicitly permitted should not be accepted.<\/td>\n<td>Run the following command to ensure the default <code>FORWARD<\/code> policy is <code>DROP<\/code>:<\/p>\n<pre>grep \":FORWARD\" \/etc\/sysconfig\/iptables<\/pre>\n<p>The output should be similar to the following:<\/p>\n<pre>$ sudo grep \":FORWARD\" \/etc\/sysconfig\/iptables\r\n:FORWARD DROP [0:0<\/pre>\n<p>If the default policy for the FORWARD chain is not set to DROP, this is a finding.<\/td>\n<td>To set the default policy to DROP (instead of ACCEPT) for the built-in FORWARD chain which processes packets that will be forwarded from one interface to another, add or correct the following line in <code>\/etc\/sysconfig\/iptables<\/code>:<\/p>\n<pre>:FORWARD DROP [0:0]<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000321<\/td>\n<td>CCI-001130<\/td>\n<td>low<\/td>\n<td>The system must provide VPN connectivity for communications over untrusted networks.<\/td>\n<td>Providing the ability for remote users or systems to initiate a secure VPN connection protects information when it is transmitted over a wide area network.<\/td>\n<td>Run the following command to determine if the <code>openswan<\/code> package is installed:<\/p>\n<pre># rpm -q openswan<\/pre>\n<p>If the package is not installed, this is a finding.<\/td>\n<td>The Openswan package provides an implementation of IPsec and IKE, which permits the creation of secure tunnels over untrusted networks. The <code>openswan<\/code> package can be installed with the following command:<\/p>\n<pre># yum install openswan<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000324<\/td>\n<td>CCI-000050<\/td>\n<td>medium<\/td>\n<td>A login banner must be displayed immediately prior to, or as part of, graphical desktop environment login prompts.<\/td>\n<td>An appropriate warning message reinforces policy awareness during the logon process and facilitates possible legal action against attackers.<\/td>\n<td>To ensure a login warning banner is enabled, run the following:<\/p>\n<pre>$ gconftool-2 -g \/apps\/gdm\/simple-greeter\/banner_message_enable<\/pre>\n<p>Search for the <code>banner_message_enable<\/code> schema. If properly configured, the <code>default<\/code> value should be <code>true<\/code>. If it is not, this is a finding.<\/td>\n<td>To enable displaying a login warning banner in the GNOME Display Manager&#8217;s login screen, run the following command:<\/p>\n<pre>$ sudo gconftool-2 --direct \\\r\n  --config-source xml:readwrite:\/etc\/gconf\/gconf.xml.mandatory \\\r\n  --type bool \\\r\n  --set \/apps\/gdm\/simple-greeter\/banner_message_enable true<\/pre>\n<p>To display a banner, this setting must be enabled and then banner text must also be set.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000326<\/td>\n<td>CCI-NaN<\/td>\n<td>medium<\/td>\n<td>The Department of Defense (DoD) login banner must be displayed immediately prior to, or as part of, graphical desktop environment login prompts.<\/td>\n<td>An appropriate warning message reinforces policy awareness during the logon process and facilitates possible legal action against attackers.<\/td>\n<td>To ensure the login warning banner text is properly set, run the following:<\/p>\n<pre>$ gconftool-2 -g \/apps\/gdm\/simple-greeter\/banner_message_text<\/pre>\n<p>If properly configured, the proper banner text will appear within this schema. If it does not, this is a finding.<\/td>\n<td>To set the text shown by the GNOME Display Manager in the login screen, run the following command:<\/p>\n<pre>$ sudo gconftool-2 --direct \\\r\n  --config-source xml:readwrite:\/etc\/gconf\/gconf.xml.mandatory \\\r\n  --type string \\\r\n  --set \/apps\/gdm\/simple-greeter\/banner_message_text \\\r\n  \"Text of the warning banner here\"<\/pre>\n<p>When entering a warning banner that spans several lines, remember to begin and end the string with <code>\"<\/code>. This command writes directly either to the <code>\/etc\/gconf\/gconf.xml.mandatory\/%gconf-tree.xml<\/code> if it exists or to the file <code>\/etc\/gconf\/gconf.xml.mandatory\/apps\/gdm\/simple-greeter\/%gconf.xml<\/code>. Either of these files can later be edited directly if necessary.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000331<\/td>\n<td>CCI-000085<\/td>\n<td>medium<\/td>\n<td>The Bluetooth service must be disabled.<\/td>\n<td>Disabling the <code>bluetooth<\/code> service prevents the system from attempting connections to Bluetooth devices, which entails some security risk. Nevertheless, variation in this risk decision may be expected due to the utility of Bluetooth connectivity and its limited range.<\/td>\n<td>To check that the <code>bluetooth<\/code> service is disabled in system boot configuration, run the following command:<\/p>\n<pre># chkconfig <code>bluetooth<\/code> --list<\/pre>\n<p>Output should indicate the <code>bluetooth<\/code> service has either not been installed, or has been disabled at all runlevels, as shown in the example below:<\/p>\n<pre># chkconfig <code>bluetooth<\/code> --list\r\n<code>bluetooth<\/code>       0:off   1:off   2:off   3:off   4:off   5:off   6:off<\/pre>\n<p>Run the following command to verify <code>bluetooth<\/code> is disabled through current runtime configuration:<\/p>\n<pre># service bluetooth status<\/pre>\n<p>If the service is disabled the command will return the following output:<\/p>\n<pre>bluetooth is stopped<\/pre>\n<p>If the service is running, this is a finding.<\/td>\n<td>The <code>bluetooth<\/code> service can be disabled with the following command:<\/p>\n<pre># chkconfig bluetooth off<\/pre>\n<pre>$ sudo service bluetooth stop<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000334<\/td>\n<td>CCI-000017<\/td>\n<td>low<\/td>\n<td>Accounts must be locked upon 35 days of inactivity.<\/td>\n<td>Disabling inactive accounts ensures that accounts which may not have been responsibly removed are not available to attackers who may have compromised their credentials.<\/td>\n<td>To verify the <code>INACTIVE<\/code> setting, run the following command:<\/p>\n<pre>grep \"INACTIVE\" \/etc\/default\/useradd<\/pre>\n<p>The output should indicate the <code>INACTIVE<\/code> configuration option is set to an appropriate integer as shown in the example below:<\/p>\n<pre>$ sudo grep \"INACTIVE\" \/etc\/default\/useradd\r\nINACTIVE=35<\/pre>\n<p>If it does not, this is a finding.<\/td>\n<td>To specify the number of days after a password expires (which signifies inactivity) until an account is permanently disabled, add or correct the following lines in <code>\/etc\/default\/useradd<\/code>, substituting <code><i>NUM_DAYS<\/i><\/code> appropriately:<\/p>\n<pre>INACTIVE=<i>NUM_DAYS<\/i><\/pre>\n<p>A value of 35 is recommended. If a password is currently on the verge of expiration, then 35 days remain until the account is automatically disabled. However, if the password will not expire for another 60 days, then 95 days could elapse until the account would be automatically disabled. See the <code>useradd<\/code> man page for more information. Determining the inactivity timeout must be done with careful consideration of the length of a &#8220;normal&#8221; period of inactivity for users in the particular environment. Setting the timeout too low incurs support costs and also has the potential to impact availability of the system to legitimate users.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000335<\/td>\n<td>CCI-000795<\/td>\n<td>low<\/td>\n<td>The operating system must manage information system identifiers for users and devices by disabling the user identifier after an organization defined time period of inactivity.<\/td>\n<td>Disabling inactive accounts ensures that accounts which may not have been responsibly removed are not available to attackers who may have compromised their credentials.<\/td>\n<td>To verify the <code>INACTIVE<\/code> setting, run the following command:<\/p>\n<pre>grep \"INACTIVE\" \/etc\/default\/useradd<\/pre>\n<p>The output should indicate the <code>INACTIVE<\/code> configuration option is set to an appropriate integer as shown in the example below:<\/p>\n<pre>$ sudo grep \"INACTIVE\" \/etc\/default\/useradd\r\nINACTIVE=35<\/pre>\n<p>If it does not, this is a finding.<\/td>\n<td>To specify the number of days after a password expires (which signifies inactivity) until an account is permanently disabled, add or correct the following lines in <code>\/etc\/default\/useradd<\/code>, substituting <code><i>NUM_DAYS<\/i><\/code> appropriately:<\/p>\n<pre>INACTIVE=<i>NUM_DAYS<\/i><\/pre>\n<p>A value of 35 is recommended. If a password is currently on the verge of expiration, then 35 days remain until the account is automatically disabled. However, if the password will not expire for another 60 days, then 95 days could elapse until the account would be automatically disabled. See the <code>useradd<\/code> man page for more information. Determining the inactivity timeout must be done with careful consideration of the length of a &#8220;normal&#8221; period of inactivity for users in the particular environment. Setting the timeout too low incurs support costs and also has the potential to impact availability of the system to legitimate users.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000336<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The sticky bit must be set on all public directories.<\/td>\n<td>Failing to set the sticky bit on public directories allows unauthorized users to delete files in the directory structure.<\/p>\n<p>The only authorized public directories are those temporary directories supplied with the system, or those designed to be temporary file repositories. The setting is normally reserved for directories used by the system, by users for temporary file storage (such as <code>\/tmp<\/code>), and for directories requiring global read\/write access.<\/td>\n<td>To find world-writable directories that lack the sticky bit, run the following command:<\/p>\n<pre>$ sudo find \/ -xdev -type d -perm 002 ! -perm 1000<\/pre>\n<p>If any world-writable directories are missing the sticky bit, this is a finding.<\/td>\n<td>When the so-called &#8216;sticky bit&#8217; is set on a directory, only the owner of a given file may remove that file from the directory. Without the sticky bit, any user with write access to a directory may remove any file in the directory. Setting the sticky bit prevents users from removing each other&#8217;s files. In cases where there is no reason for a directory to be world-writable, a better solution is to remove that permission rather than to set the sticky bit. However, if a directory is used by a particular application, consult that application&#8217;s documentation instead of blindly changing modes.<br \/>\nTo set the sticky bit on a world-writable directory <i>DIR<\/i>, run the following command:<\/p>\n<pre>$ sudo chmod +t <i>DIR<\/i><\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000337<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>All public directories must be owned by a system account.<\/td>\n<td>Allowing a user account to own a world-writable directory is undesirable because it allows the owner of that directory to remove or replace any files that may be placed in the directory by other users.<\/td>\n<td>The following command will discover and print world-writable directories that are not owned by a system account, given the assumption that only system accounts have a uid lower than 500. Run it once for each local partition <i>PART<\/i>:<\/p>\n<pre>$ sudo find <i>PART<\/i> -xdev -type d -perm -0002 -uid +499 -print<\/pre>\n<p>If there is output, this is a finding.<\/td>\n<td>All directories in local partitions which are world-writable should be owned by root or another system account. If any world-writable directories are not owned by a system account, this should be investigated. Following this, the files should be deleted or assigned to an appropriate group.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000338<\/td>\n<td>CCI-000366<\/td>\n<td>high<\/td>\n<td>The TFTP daemon must operate in &#8220;secure mode&#8221; which provides access only to a single directory on the host file system.<\/td>\n<td>Using the <code>-s<\/code> option causes the TFTP service to only serve files from the given directory. Serving files from an intentionally-specified directory reduces the risk of sharing files which should remain private.<\/td>\n<td>If TFTP is not installed, this is not applicable. To determine if TFTP is installed, run the following command:<\/p>\n<pre>$ rpm -qa | grep tftp<\/pre>\n<p>Verify <code>tftp<\/code> is configured by with the <code>-s<\/code> option by running the following command:<\/p>\n<pre>grep \"server_args\" \/etc\/xinetd.d\/tftp<\/pre>\n<p>The output should indicate the <code>server_args<\/code> variable is configured with the <code>-s<\/code> flag, matching the example below:<\/p>\n<pre> $ grep \"server_args\" \/etc\/xinetd.d\/tftp\r\nserver_args = -s \/var\/lib\/tftpboot<\/pre>\n<p>If this flag is missing, this is a finding.<\/td>\n<td>If running the <code>tftp<\/code> service is necessary, it should be configured to change its root directory at startup. To do so, ensure <code>\/etc\/xinetd.d\/tftp<\/code> includes <code>-s<\/code> as a command line argument, as shown in the following example (which is also the default):<\/p>\n<pre>server_args = -s \/var\/lib\/tftpboot<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000339<\/td>\n<td>CCI-000130<\/td>\n<td>low<\/td>\n<td>The FTP daemon must be configured for logging or verbose mode.<\/td>\n<td>To trace malicious activity facilitated by the FTP service, it must be configured to ensure that all commands sent to the FTP server are logged using the verbose vsftpd log format. The default vsftpd log file is <code>\/var\/log\/vsftpd.log<\/code>.<\/td>\n<td>Find if logging is applied to the FTP daemon.<\/p>\n<p>Procedures:<\/p>\n<p>If vsftpd is started by xinetd the following command will indicate the xinetd.d startup file:<\/p>\n<pre>$ grep vsftpd \/etc\/xinetd.d\/*<\/pre>\n<pre>$ grep server_args <i>vsftpd xinetd.d startup file<\/i><\/pre>\n<p>This will indicate the vsftpd config file used when starting through xinetd. If the <i>server_args<\/i> line is missing or does not include the vsftpd configuration file, then the default config file (\/etc\/vsftpd\/vsftpd.conf) is used.<\/p>\n<pre>$ sudo grep xferlog_enable <i>vsftpd config file<\/i><\/pre>\n<p>If xferlog_enable is missing, or is not set to yes, this is a finding.<\/td>\n<td>Add or correct the following configuration options within the <code>vsftpd<\/code> configuration file, located at <code>\/etc\/vsftpd\/vsftpd.conf<\/code>:<\/p>\n<pre>xferlog_enable=YES\r\nxferlog_std_format=NO\r\nlog_ftp_protocol=YES<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000340<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The snmpd service must use only SNMP protocol version 3 or newer.<\/td>\n<td>Earlier versions of SNMP are considered insecure, as they potentially allow unauthorized access to detailed system management information.<\/td>\n<td>To ensure only SNMPv3 or newer is used, run the following command:<\/p>\n<pre>$ sudo grep 'rocommunity\\|rwcommunity\\|com2sec' \/etc\/snmp\/snmpd.conf | grep -v \"^#\"<\/pre>\n<p>There should be no output. If there is output, this is a finding.<\/td>\n<td>Edit <code>\/etc\/snmp\/snmpd.conf<\/code>, removing any references to <code>rocommunity<\/code>, <code>rwcommunity<\/code>, or <code>com2sec<\/code>. Upon doing that, restart the SNMP service:<\/p>\n<pre>$ sudo service snmpd restart<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000341<\/td>\n<td>CCI-000366<\/td>\n<td>high<\/td>\n<td>The snmpd service must not use a default password.<\/td>\n<td>Presence of the default SNMP password enables querying of different system aspects and could result in unauthorized knowledge of the system.<\/td>\n<td>To ensure the default password is not set, run the following command:<\/p>\n<pre>$ sudo grep -v \"^#\" \/etc\/snmp\/snmpd.conf| grep public<\/pre>\n<p>There should be no output. If there is output, this is a finding.<\/td>\n<td>Edit <code>\/etc\/snmp\/snmpd.conf<\/code>, remove default community string <code>public<\/code>. Upon doing that, restart the SNMP service:<\/p>\n<pre>$ sudo service snmpd restart<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000342<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The system default umask for the bash shell must be 077.<\/td>\n<td>The umask value influences the permissions assigned to files when they are created. A misconfigured umask value could result in files with excessive permissions that can be read or written to by unauthorized users.<\/td>\n<td>Verify the <code>umask<\/code> setting is configured correctly in the <code>\/etc\/bashrc<\/code> file by running the following command:<\/p>\n<pre>$ grep \"umask\" \/etc\/bashrc<\/pre>\n<p>All output must show the value of <code>umask<\/code> set to 077, as shown below:<\/p>\n<pre>$ grep \"umask\" \/etc\/bashrc\r\numask 077\r\numask 077<\/pre>\n<p>If the above command returns no output, or if the umask is configured incorrectly, this is a finding.<\/td>\n<td>To ensure the default umask for users of the Bash shell is set properly, add or correct the <code>umask<\/code> setting in <code>\/etc\/bashrc<\/code> to read as follows:<\/p>\n<pre>umask<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000343<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The system default umask for the csh shell must be 077.<\/td>\n<td>The umask value influences the permissions assigned to files when they are created. A misconfigured umask value could result in files with excessive permissions that can be read or written to by unauthorized users.<\/td>\n<td>Verify the <code>umask<\/code> setting is configured correctly in the <code>\/etc\/csh.cshrc<\/code> file by running the following command:<\/p>\n<pre>$ grep \"umask\" \/etc\/csh.cshrc<\/pre>\n<p>All output must show the value of <code>umask<\/code> set to 077, as shown in the below:<\/p>\n<pre>$ grep \"umask\" \/etc\/csh.cshrc\r\numask 077<\/pre>\n<p>If the above command returns no output, or if the umask is configured incorrectly, this is a finding.<\/td>\n<td>To ensure the default umask for users of the C shell is set properly, add or correct the <code>umask<\/code> setting in <code>\/etc\/csh.cshrc<\/code> to read as follows:<\/p>\n<pre>umask<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000344<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The system default umask in \/etc\/profile must be 077.<\/td>\n<td>The umask value influences the permissions assigned to files when they are created. A misconfigured umask value could result in files with excessive permissions that can be read or written to by unauthorized users.<\/td>\n<td>Verify the <code>umask<\/code> setting is configured correctly in the <code>\/etc\/profile<\/code> file by running the following command:<\/p>\n<pre>$ grep \"umask\" \/etc\/profile<\/pre>\n<p>All output must show the value of <code>umask<\/code> set to 077, as shown in the below:<\/p>\n<pre>$ grep \"umask\" \/etc\/profile\r\numask 077<\/pre>\n<p>If the above command returns no output, or if the umask is configured incorrectly, this is a finding.<\/td>\n<td>To ensure the default umask controlled by <code>\/etc\/profile<\/code> is set properly, add or correct the <code>umask<\/code> setting in <code>\/etc\/profile<\/code> to read as follows:<\/p>\n<pre>umask<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000345<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The system default umask in \/etc\/login.defs must be 077.<\/td>\n<td>The umask value influences the permissions assigned to files when they are created. A misconfigured umask value could result in files with excessive permissions that can be read and written to by unauthorized users.<\/td>\n<td>Verify the <code>UMASK<\/code> setting is configured correctly in the <code>\/etc\/login.defs<\/code> file by running the following command:<\/p>\n<pre>$ grep -i \"UMASK\" \/etc\/login.defs<\/pre>\n<p>All output must show the value of <code>umask<\/code> set to 077, as shown in the below:<\/p>\n<pre>$ grep -i \"UMASK\" \/etc\/login.defs\r\numask 077<\/pre>\n<p>If the above command returns no output, or if the umask is configured incorrectly, this is a finding.<\/td>\n<td>To ensure the default umask controlled by <code>\/etc\/login.defs<\/code> is set properly, add or correct the <code>UMASK<\/code> setting in <code>\/etc\/login.defs<\/code> to read as follows:<\/p>\n<pre>UMASK<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000346<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The system default umask for daemons must be 027 or 022.<\/td>\n<td>The umask influences the permissions assigned to files created by a process at run time. An unnecessarily permissive umask could result in files being created with insecure permissions.<\/td>\n<td>To check the value of the <code>umask<\/code>, run the following command:<\/p>\n<pre>$ grep umask \/etc\/init.d\/functions<\/pre>\n<p>The output should show either <code>022<\/code> or <code>027<\/code>. If it does not, this is a finding.<\/td>\n<td>The file <code>\/etc\/init.d\/functions<\/code> includes initialization parameters for most or all daemons started at boot time. The default umask of 022 prevents creation of group- or world-writable files. To set the default umask for daemons, edit the following line, inserting 022 or 027 for <i>umask<\/i> appropriately:<\/p>\n<pre>umask <i><\/i><\/pre>\n<p>Setting the umask to too restrictive a setting can cause serious errors at runtime. Many daemons on the system already individually restrict themselves to a umask of 077 in their own init scripts.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000347<\/td>\n<td>CCI-000196<\/td>\n<td>medium<\/td>\n<td>There must be no .netrc files on the system.<\/td>\n<td>Unencrypted passwords for remote FTP servers may be stored in <code>.netrc<\/code> files. DoD policy requires passwords be encrypted in storage and not used in access scripts.<\/td>\n<td>To check the system for the existence of any <code>.netrc<\/code> files, run the following command:<\/p>\n<pre>$ sudo find \/home -xdev -name .netrc<\/pre>\n<p><!-- needs fixup to limit search to home dirs --> If any .netrc files exist, this is a finding.<\/td>\n<td>The <code>.netrc<\/code> files contain login information used to auto-login into FTP servers and reside in the user&#8217;s home directory. These files may contain unencrypted passwords to remote FTP servers making them susceptible to access by unauthorized users and should not be used. Any <code>.netrc<\/code> files should be removed.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000348<\/td>\n<td>CCI-000048<\/td>\n<td>medium<\/td>\n<td>The FTPS\/FTP service on the system must be configured with the Department of Defense (DoD) login banner.<\/td>\n<td>This setting will cause the system greeting banner to be used for FTP connections as well.<\/td>\n<td>If FTP services are not installed, this is not applicable.<\/p>\n<p>To verify this configuration, run the following command:<\/p>\n<pre>grep \"banner_file\" \/etc\/vsftpd\/vsftpd.conf<\/pre>\n<p>The output should show the value of <code>banner_file<\/code> is set to <code>\/etc\/issue<\/code>, an example of which is shown below:<\/p>\n<pre>$ sudo grep \"banner_file\" \/etc\/vsftpd\/vsftpd.conf\r\nbanner_file=\/etc\/issue<\/pre>\n<p>If it does not, this is a finding.<\/td>\n<td>Edit the vsftpd configuration file, which resides at <code>\/etc\/vsftpd\/vsftpd.conf<\/code> by default. Add or correct the following configuration options:<\/p>\n<pre>banner_file=\/etc\/issue<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000349<\/td>\n<td>CCI-000765<\/td>\n<td>medium<\/td>\n<td>The system must be configured to require the use of a CAC, PIV compliant hardware token, or Alternate Logon Token (ALT) for authentication.<\/td>\n<td>Smart card login provides two-factor authentication stronger than that provided by a username and password combination. Smart cards leverage PKI (public key infrastructure) in order to provide and verify credentials.<\/td>\n<td>Interview the SA to determine if all accounts not exempted by policy are using CAC authentication. For DoD systems, the following systems and accounts are exempt from using smart card (CAC) authentication:<\/p>\n<ul>\n<li>SIPRNET systems<\/li>\n<p><!-- also any other non-Internet systems? --><\/p>\n<li>Standalone systems<\/li>\n<li>Application accounts<\/li>\n<li>Temporary employee accounts, such as students or interns, who cannot easily receive a CAC or PIV<\/li>\n<li>Operational tactical locations that are not collocated with RAPIDS workstations to issue CAC or ALT<\/li>\n<li>Test systems, such as those with an Interim Approval to Test (IATT) and use a separate VPN, firewall, or security measure preventing access to network and system components from outside the protection boundary documented in the IATT.<\/li>\n<\/ul>\n<p>If non-exempt accounts are not using CAC authentication, this is a finding.<\/td>\n<td>To enable smart card authentication, consult the documentation at:<\/p>\n<ul>\n<li><b>https:\/\/docs.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/6\/html\/Managing_Smart_Cards\/enabling-smart-card-login.html<\/b><\/li>\n<\/ul>\n<p>For guidance on enabling SSH to authenticate against a Common Access Card (CAC), consult documentation at:<\/p>\n<ul>\n<li><b>https:\/\/access.redhat.com\/solutions\/82273<\/b><\/li>\n<\/ul>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000356<\/td>\n<td>CCI-000047<\/td>\n<td>medium<\/td>\n<td>The system must require administrator action to unlock an account locked by excessive failed login attempts.<\/td>\n<td>Locking out user accounts after a number of incorrect attempts prevents direct password guessing attacks. Ensuring that an administrator is involved in unlocking locked accounts draws appropriate attention to such situations.<\/td>\n<td>To ensure the failed password attempt policy is configured correctly, run the following command:<\/p>\n<pre>$ grep pam_faillock \/etc\/pam.d\/system-auth<\/pre>\n<p>The output should show <code>unlock_time=&lt;some-large-number&gt;<\/code>. If that is not the case, this is a finding.<\/td>\n<td>To configure the system to lock out accounts after a number of incorrect login attempts and require an administrator to unlock the account using <code>pam_faillock.so<\/code>:<\/p>\n<p>Add the following lines immediately below the <code>pam_env.so<\/code> statement in <code>\/etc\/pam.d\/system-auth<\/code>:<\/p>\n<pre>auth [default=die] pam_faillock.so authfail deny=3 unlock_time= fail_interval=900<\/pre>\n<pre>auth required pam_faillock.so authsucc deny=3 unlock_time= fail_interval=900<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000357<\/td>\n<td>CCI-001452<\/td>\n<td>medium<\/td>\n<td>The system must disable accounts after excessive login failures within a 15-minute interval.<\/td>\n<td>Locking out user accounts after a number of incorrect attempts within a specific period of time prevents direct password guessing attacks.<\/td>\n<td>To ensure the failed password attempt policy is configured correctly, run the following command:<\/p>\n<pre>$ grep pam_faillock \/etc\/pam.d\/system-auth \/etc\/pam.d\/password-auth<\/pre>\n<p>For each file, the output should show <code>fail_interval=&lt;interval-in-seconds&gt;<\/code> where <code>interval-in-seconds<\/code> is 900 (15 minutes) or greater. If the <code>fail_interval<\/code> parameter is not set, the default setting of 900 seconds is acceptable. If that is not the case, this is a finding.<\/td>\n<td>Utilizing <code>pam_faillock.so<\/code>, the <code>fail_interval<\/code> directive configures the system to lock out accounts after a number of incorrect login attempts.<\/p>\n<p>Add the following <code>fail_interval<\/code> directives to <code>pam_faillock.so<\/code> immediately below the <code>pam_env.so<\/code> statement in <code>\/etc\/pam.d\/system-auth<\/code> and <code>\/etc\/pam.d\/password-auth<\/code>:<\/p>\n<pre>auth [default=die] pam_faillock.so authfail deny=3 unlock_time=604800 fail_interval=<\/pre>\n<pre>auth required pam_faillock.so authsucc deny=3 unlock_time=604800 fail_interval=<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000372<\/td>\n<td>CCI-000366<\/td>\n<td>medium<\/td>\n<td>The operating system, upon successful logon\/access, must display to the user the number of unsuccessful logon\/access attempts since the last successful logon\/access.<\/td>\n<td>Users need to be aware of activity that occurs regarding their account. Providing users with information regarding the number of unsuccessful attempts that were made to login to their account allows the user to determine if any unauthorized activity has occurred and gives them an opportunity to notify administrators.<\/td>\n<td>To ensure that last logon\/access notification is configured correctly, run the following command:<\/p>\n<pre>$ grep pam_lastlog.so \/etc\/pam.d\/system-auth<\/pre>\n<p>The output should show output <code>showfailed<\/code>. If that is not the case, this is a finding.<\/td>\n<td>To configure the system to notify users of last logon\/access using <code>pam_lastlog<\/code>, add the following line immediately after <code>session required pam_limits.so<\/code>:<\/p>\n<pre>session       required     pam_lastlog.so showfailed<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000373<\/td>\n<td>CCI-000056<\/td>\n<td>medium<\/td>\n<td>The operating system must retain the session lock until the user reestablishes access using established identification and authentication procedures.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000374<\/td>\n<td>CCI-000099<\/td>\n<td>medium<\/td>\n<td>The operating system must employ automated mechanisms to enable authorized users to make information sharing decisions based on access authorizations of sharing partners and access restrictions on information to be shared.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000375<\/td>\n<td>CCI-000131<\/td>\n<td>medium<\/td>\n<td>The operating system must produce audit records containing sufficient information to establish when (date and time) the events occurred.<\/td>\n<td>The Red Hat Enterprise Linux audit system meets this requirement through design and implementation.<\/td>\n<td>The RHEL6 auditing system supports this requirement and cannot be configured to be out of compliance. Every audit record in RHEL includes a timestamp, the operation attempted, success or failure of the operation, the subject involved (executable\/process), the object involved (file\/path), and security labels for the subject and object. It also includes the ability to label events with custom key labels. The auditing system centralizes the recording of audit events for the entire system and includes reduction (<code>ausearch<\/code>), reporting (<code>aureport<\/code>), and real-time response (<code>audispd<\/code>) facilities. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000376<\/td>\n<td>CCI-000132<\/td>\n<td>medium<\/td>\n<td>The operating system must produce audit records containing sufficient information to establish where the events occurred.<\/td>\n<td>The Red Hat Enterprise Linux audit system meets this requirement through design and implementation.<\/td>\n<td>The RHEL6 auditing system supports this requirement and cannot be configured to be out of compliance. Every audit record in RHEL includes a timestamp, the operation attempted, success or failure of the operation, the subject involved (executable\/process), the object involved (file\/path), and security labels for the subject and object. It also includes the ability to label events with custom key labels. The auditing system centralizes the recording of audit events for the entire system and includes reduction (<code>ausearch<\/code>), reporting (<code>aureport<\/code>), and real-time response (<code>audispd<\/code>) facilities. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000377<\/td>\n<td>CCI-000133<\/td>\n<td>medium<\/td>\n<td>The operating system must produce audit records containing sufficient information to establish the sources of the events.<\/td>\n<td>The Red Hat Enterprise Linux audit system meets this requirement through design and implementation.<\/td>\n<td>The RHEL6 auditing system supports this requirement and cannot be configured to be out of compliance. Every audit record in RHEL includes a timestamp, the operation attempted, success or failure of the operation, the subject involved (executable\/process), the object involved (file\/path), and security labels for the subject and object. It also includes the ability to label events with custom key labels. The auditing system centralizes the recording of audit events for the entire system and includes reduction (<code>ausearch<\/code>), reporting (<code>aureport<\/code>), and real-time response (<code>audispd<\/code>) facilities. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000378<\/td>\n<td>CCI-000134<\/td>\n<td>medium<\/td>\n<td>The operating system must produce audit records containing sufficient information to establish the outcome (success or failure) of the events.<\/td>\n<td>The Red Hat Enterprise Linux audit system meets this requirement through design and implementation.<\/td>\n<td>The RHEL6 auditing system supports this requirement and cannot be configured to be out of compliance. Every audit record in RHEL includes a timestamp, the operation attempted, success or failure of the operation, the subject involved (executable\/process), the object involved (file\/path), and security labels for the subject and object. It also includes the ability to label events with custom key labels. The auditing system centralizes the recording of audit events for the entire system and includes reduction (<code>ausearch<\/code>), reporting (<code>aureport<\/code>), and real-time response (<code>audispd<\/code>) facilities. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000379<\/td>\n<td>CCI-000135<\/td>\n<td>medium<\/td>\n<td>The operating system must include organization defined additional, more detailed information in the audit records for audit events identified by type, location, or subject.<\/td>\n<td>The Red Hat Enterprise Linux audit system meets this requirement through design and implementation.<\/td>\n<td>The RHEL6 auditing system supports this requirement and cannot be configured to be out of compliance. Every audit record in RHEL includes a timestamp, the operation attempted, success or failure of the operation, the subject involved (executable\/process), the object involved (file\/path), and security labels for the subject and object. It also includes the ability to label events with custom key labels. The auditing system centralizes the recording of audit events for the entire system and includes reduction (<code>ausearch<\/code>), reporting (<code>aureport<\/code>), and real-time response (<code>audispd<\/code>) facilities. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000380<\/td>\n<td>CCI-000154<\/td>\n<td>medium<\/td>\n<td>Operating system must support the capability to centralize the review and analysis of audit records from multiple components within the system.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000382<\/td>\n<td>CCI-000159<\/td>\n<td>medium<\/td>\n<td>The operating system must use internal system clocks to generate time stamps for audit records.<\/td>\n<td>The Red Hat Enterprise Linux audit system meets this requirement through design and implementation.<\/td>\n<td>The RHEL6 auditing system supports this requirement and cannot be configured to be out of compliance. Every audit record in RHEL includes a timestamp, the operation attempted, success or failure of the operation, the subject involved (executable\/process), the object involved (file\/path), and security labels for the subject and object. It also includes the ability to label events with custom key labels. The auditing system centralizes the recording of audit events for the entire system and includes reduction (<code>ausearch<\/code>), reporting (<code>aureport<\/code>), and real-time response (<code>audispd<\/code>) facilities. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000383<\/td>\n<td>CCI-000163<\/td>\n<td>medium<\/td>\n<td>Audit log files must have mode 0640 or less permissive.<\/td>\n<td>If users can write to audit logs, audit trails can be modified or destroyed.<\/td>\n<td>Run the following command to check the mode of the system audit logs:<\/p>\n<pre>$ sudo ls -l \/var\/log\/audit<\/pre>\n<p>Audit logs must be mode 0640 or less permissive. If any are more permissive, this is a finding.<\/td>\n<td>Change the mode of the audit log files with the following command:<\/p>\n<pre>$ sudo chmod 0640 <i>audit_file<\/i><\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000384<\/td>\n<td>CCI-000162<\/td>\n<td>medium<\/td>\n<td>Audit log files must be owned by root.<\/td>\n<td>Failure to give ownership of the audit log files to root allows the designated owner, and unauthorized users, potential access to sensitive information.<\/td>\n<td>To check the ownership of <code>\/var\/log<\/code>, run the command:<\/p>\n<pre>$ ls -lL \/var\/log<\/pre>\n<p>If properly configured, the output should indicate the following owner: <code>root<\/code> If it does not, this is a finding.<\/td>\n<td>To properly set the owner of <code>\/var\/log<\/code>, run the command:<\/p>\n<pre xml:space=\"preserve\"># chown root\/var\/log<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000387<\/td>\n<td>CCI-000171<\/td>\n<td>medium<\/td>\n<td>The operating system must allow designated organizational personnel to select which auditable events are to be audited by the operating system.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000388<\/td>\n<td>CCI-000174<\/td>\n<td>medium<\/td>\n<td>The operating system must support the capability to compile audit records from multiple components within the system into a system-wide (logical or physical) audit trail that is time-correlated to within organization defined level of tolerance.<\/td>\n<td>The Red Hat Enterprise Linux audit system meets this requirement through design and implementation.<\/td>\n<td>The RHEL6 auditing system supports this requirement and cannot be configured to be out of compliance. Every audit record in RHEL includes a timestamp, the operation attempted, success or failure of the operation, the subject involved (executable\/process), the object involved (file\/path), and security labels for the subject and object. It also includes the ability to label events with custom key labels. The auditing system centralizes the recording of audit events for the entire system and includes reduction (<code>ausearch<\/code>), reporting (<code>aureport<\/code>), and real-time response (<code>audispd<\/code>) facilities. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000389<\/td>\n<td>CCI-000185<\/td>\n<td>medium<\/td>\n<td>The operating system, for PKI-based authentication must validate certificates by constructing a certification path with status information to an accepted trust anchor.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000390<\/td>\n<td>CCI-000186<\/td>\n<td>medium<\/td>\n<td>The operating system, for PKI-based authentication must enforce authorized access to the corresponding private key.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000392<\/td>\n<td>CCI-000206<\/td>\n<td>medium<\/td>\n<td>The operating system must obscure feedback of authentication information during the authentication process to protect the information from possible exploitation\/use by unauthorized individuals.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000396<\/td>\n<td>CCI-000223<\/td>\n<td>medium<\/td>\n<td>The operating system must bind security attributes to information to facilitate information flow policy enforcement.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000397<\/td>\n<td>CCI-000226<\/td>\n<td>medium<\/td>\n<td>The operating system must provide the capability for a privileged administrator to configure organization defined security policy filters to support different security policies.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000398<\/td>\n<td>CCI-000345<\/td>\n<td>medium<\/td>\n<td>The operating system must enforce logical access restrictions associated with changes to the information system.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000399<\/td>\n<td>CCI-000346<\/td>\n<td>medium<\/td>\n<td>The operating system must employ automated mechanisms to enforce access restrictions.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000403<\/td>\n<td>CCI-000386<\/td>\n<td>medium<\/td>\n<td>The operating system must employ automated mechanisms to prevent program execution in accordance with the organization defined specifications.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000411<\/td>\n<td>CCI-000802<\/td>\n<td>medium<\/td>\n<td>The operating system must dynamically manage identifiers, attributes, and associated access authorizations.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000412<\/td>\n<td>CCI-000872<\/td>\n<td>medium<\/td>\n<td>The operating system must employ automated mechanisms to restrict the use of maintenance tools to authorized personnel only.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000414<\/td>\n<td>CCI-001082<\/td>\n<td>medium<\/td>\n<td>The operating system must separate user functionality (including user interface services) from operating system management functionality.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000415<\/td>\n<td>CCI-001083<\/td>\n<td>medium<\/td>\n<td>The operating system must prevent the presentation of information system management-related functionality at an interface for general (i.e., non-privileged) users.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000416<\/td>\n<td>CCI-001084<\/td>\n<td>medium<\/td>\n<td>The operating system must isolate security functions from nonsecurity functions.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000417<\/td>\n<td>CCI-001086<\/td>\n<td>medium<\/td>\n<td>The operating system must isolate security functions enforcing access and information flow control from both non-security functions and from other security functions.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000418<\/td>\n<td>CCI-001087<\/td>\n<td>medium<\/td>\n<td>The operating system must implement an information system isolation boundary to minimize the number of non-security functions included within the boundary containing security functions.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000419<\/td>\n<td>CCI-001089<\/td>\n<td>medium<\/td>\n<td>The operating system must implement security functions as a layered structure minimizing interactions between layers of the design and avoiding any dependence by lower layers on the functionality or correctness of higher layers.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000420<\/td>\n<td>CCI-001090<\/td>\n<td>medium<\/td>\n<td>The operating system must prevent unauthorized and unintended information transfer via shared system resources.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000421<\/td>\n<td>CCI-001091<\/td>\n<td>medium<\/td>\n<td>The operating system must not share resources used to interface with systems operating at different security levels.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000423<\/td>\n<td>CCI-001096<\/td>\n<td>medium<\/td>\n<td>The operating system must limit the use of resources by priority.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000424<\/td>\n<td>CCI-001111<\/td>\n<td>medium<\/td>\n<td>The operating system must prevent remote devices that have established a non-remote connection with the system from communicating outside of the communication path with resources in external networks.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000430<\/td>\n<td>CCI-001127<\/td>\n<td>medium<\/td>\n<td>The operating system must protect the integrity of transmitted information.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000431<\/td>\n<td>CCI-001128<\/td>\n<td>medium<\/td>\n<td>The operating system must employ cryptographic mechanisms to recognize changes to information during transmission unless otherwise protected by alternative physical measures.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000432<\/td>\n<td>CCI-001129<\/td>\n<td>medium<\/td>\n<td>The operating system must maintain the integrity of information during aggregation, packaging, and transformation in preparation for transmission.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000445<\/td>\n<td>CCI-001158<\/td>\n<td>medium<\/td>\n<td>The operating system must validate the integrity of security attributes exchanged between systems.<\/td>\n<td>RHEL6 does not support this requirement.<\/td>\n<td>This is a permanent finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent finding and cannot be fixed. An appropriate mitigation for the system must be implemented but this finding cannot be considered fixed.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000451<\/td>\n<td>CCI-001209<\/td>\n<td>medium<\/td>\n<td>The operating system must protect the integrity of information during the processes of data aggregation, packaging, and transformation in preparation for transmission.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000454<\/td>\n<td>CCI-001214<\/td>\n<td>medium<\/td>\n<td>The operating system must employ organization defined information system components with no writeable storage that are persistent across component restart or power on\/off.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000455<\/td>\n<td>CCI-001232<\/td>\n<td>medium<\/td>\n<td>The operating system must install software updates automatically.<\/td>\n<td>This is a manual inquiry about update procedure.<\/td>\n<td>Ask an administrator if a process exists to promptly and automatically apply OS software updates. If such a process does not exist, this is a finding.<\/p>\n<p>If the OS update process limits automatic updates of software packages, where such updates would impede normal system operation, to scheduled maintenance windows, but still within IAVM-dictated timeframes, this is not a finding. If , this is a finding.<\/td>\n<td>Procedures to promptly apply software updates must be established and executed. The Red Hat operating system provides support for automating such a process, by running the yum program through a cron job or by managing the system and its packages through the Red Hat Network or a Satellite Server.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000456<\/td>\n<td>CCI-001237<\/td>\n<td>medium<\/td>\n<td>The operating system must support automated patch management tools to facilitate flaw remediation to organization defined information system components.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000457<\/td>\n<td>CCI-001248<\/td>\n<td>medium<\/td>\n<td>The operating system must prevent non-privileged users from circumventing malicious code protection capabilities.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000458<\/td>\n<td>CCI-001265<\/td>\n<td>medium<\/td>\n<td>The operating system must prevent non-privileged users from circumventing intrusion detection and prevention capabilities.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000459<\/td>\n<td>CCI-001269<\/td>\n<td>medium<\/td>\n<td>The operating system must protect information obtained from intrusion-monitoring tools from unauthorized access, modification, and deletion.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000460<\/td>\n<td>CCI-001291<\/td>\n<td>medium<\/td>\n<td>The operating system must verify the correct operation of security functions in accordance with organization defined conditions and in accordance with organization defined frequency (if periodic verification).<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000461<\/td>\n<td>CCI-001294<\/td>\n<td>medium<\/td>\n<td>The operating system must provide notification of failed automated security tests.<\/td>\n<td>RHEL6 does not support this requirement.<\/td>\n<td>This is a permanent finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent finding and cannot be fixed. An appropriate mitigation for the system must be implemented but this finding cannot be considered fixed.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000463<\/td>\n<td>CCI-001295<\/td>\n<td>medium<\/td>\n<td>The operating system must provide automated support for the management of distributed security testing.<\/td>\n<td>RHEL6 does not support this requirement.<\/td>\n<td>This is a permanent finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent finding and cannot be fixed. An appropriate mitigation for the system must be implemented but this finding cannot be considered fixed.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000464<\/td>\n<td>CCI-001310<\/td>\n<td>medium<\/td>\n<td>The operating system must check the validity of information inputs.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000465<\/td>\n<td>CCI-001328<\/td>\n<td>medium<\/td>\n<td>The operating system must support the requirement that organizations, if an information system component failure is detected must activate an organization defined alarm and\/or automatically shuts down the operating system.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000466<\/td>\n<td>CCI-001338<\/td>\n<td>medium<\/td>\n<td>The operating system must associate the identity of the information producer with the information.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000473<\/td>\n<td>CCI-001362<\/td>\n<td>medium<\/td>\n<td>The operating system must enforce an organization defined Discretionary Access Control (DAC) policy that must allow users to specify and control sharing by named individuals or groups of individuals, or by both.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000474<\/td>\n<td>CCI-001368<\/td>\n<td>medium<\/td>\n<td>The operating system must enforce approved authorizations for controlling the flow of information within the system in accordance with applicable policy.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000485<\/td>\n<td>CCI-001399<\/td>\n<td>medium<\/td>\n<td>The operating system must support and maintain the binding of organization defined security attributes to information in storage.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000486<\/td>\n<td>CCI-001400<\/td>\n<td>medium<\/td>\n<td>The operating system must support and maintain the binding of organization defined security attributes to information in process.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000488<\/td>\n<td>CCI-001424<\/td>\n<td>medium<\/td>\n<td>The operating system must dynamically reconfigure security attributes in accordance with an identified security policy as information is created and combined.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000489<\/td>\n<td>CCI-001425<\/td>\n<td>medium<\/td>\n<td>The operating system must only allow authorized entities to change security attributes.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000490<\/td>\n<td>CCI-001426<\/td>\n<td>medium<\/td>\n<td>The operating system must maintain the binding of security attributes to information with sufficient assurance that the information&#8211;attribute association can be used as the basis for automated policy actions.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000491<\/td>\n<td>CCI-001427<\/td>\n<td>medium<\/td>\n<td>The operating system must only allow authorized users to associate security attributes with information.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000492<\/td>\n<td>CCI-001428<\/td>\n<td>medium<\/td>\n<td>The operating system must display security attributes in human-readable form on each object output from the system to system output devices to identify an organization-identified set of special dissemination, handling, or distribution instructions using organization-identified human readable, standard naming conventions.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000493<\/td>\n<td>CCI-001694<\/td>\n<td>medium<\/td>\n<td>The operating system must enforce a Discretionary Access Control (DAC) policy that includes or excludes access to the granularity of a single user.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000494<\/td>\n<td>CCI-001500<\/td>\n<td>medium<\/td>\n<td>The operating system must automatically implement organization defined safeguards and countermeasures if security functions (or mechanisms) are changed inappropriately.<\/td>\n<td>RHEL6 does not support this requirement.<\/td>\n<td>This is a permanent finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent finding and cannot be fixed. An appropriate mitigation for the system must be implemented but this finding cannot be considered fixed.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000497<\/td>\n<td>CCI-001693<\/td>\n<td>medium<\/td>\n<td>The operating system must enforce a Discretionary Access Control (DAC) policy that limits propagation of access rights.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000500<\/td>\n<td>CCI-001665<\/td>\n<td>medium<\/td>\n<td>The operating system must preserve organization defined system state information in the event of a system failure.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000501<\/td>\n<td>CCI-001670<\/td>\n<td>medium<\/td>\n<td>The operating system must take organization defined list of least disruptive actions to terminate suspicious events.<\/td>\n<td>Red Hat Enterprise Linux meets this requirement through design and implementation.<\/td>\n<td>RHEL6 supports this requirement and cannot be configured to be out of compliance. This is a permanent not a finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent not a finding. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000503<\/td>\n<td>CCI-000086<\/td>\n<td>medium<\/td>\n<td>The system must have USB Mass Storage disabled unless needed.<\/td>\n<td>USB storage devices such as thumb drives can be used to introduce malicious software.<\/td>\n<td>If the system is configured to prevent the loading of the <code>usb-storage<\/code> kernel module, it will contain lines inside any file in <code>\/etc\/modprobe.d<\/code> or the deprecated<code>\/etc\/modprobe.conf<\/code>. These lines instruct the module loading system to run another program (such as <code>\/bin\/false<\/code>) upon a module <code>install<\/code> event. Run the following command to search for such lines in all files in <code>\/etc\/modprobe.d<\/code> and the deprecated <code>\/etc\/modprobe.conf<\/code>:<\/p>\n<pre xml:space=\"preserve\">$ grep -r usb-storage \/etc\/modprobe.conf \/etc\/modprobe.d<\/pre>\n<p>If no line is returned, this is a finding.<\/td>\n<td>To prevent USB storage devices from being used, configure the kernel module loading system to prevent automatic loading of the USB storage driver. To configure the system to prevent the <code>usb-storage<\/code> kernel module from being loaded, add the following line to a file in the directory <code>\/etc\/modprobe.d<\/code>:<\/p>\n<pre xml:space=\"preserve\">install usb-storage \/bin\/false<\/pre>\n<p>This will prevent the <code>modprobe<\/code> program from loading the <code>usb-storage<\/code> module, but will not prevent an administrator (or another program) from using the <code>insmod<\/code> program to load the module manually.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000509<\/td>\n<td>CCI-000136<\/td>\n<td>low<\/td>\n<td>The system must forward audit records to the syslog service.<\/td>\n<td>The auditd service does not include the ability to send audit records to a centralized server for management directly. It does, however, include an audit event multiplexor plugin (audispd) to pass audit records to the local syslog server<\/td>\n<td>To verify the audispd plugin is active, run the following command:<\/p>\n<pre>$ sudo grep active \/etc\/audisp\/plugins.d\/syslog.conf<\/pre>\n<p>If the plugin is active, the output will show <code>yes<\/code>. If it is not, this is a finding.<\/td>\n<td>To configure the <code>auditd<\/code> service to use the <code>audispd<\/code> plugin, set the <code>active<\/code> line in <code>\/etc\/audisp\/plugins.d\/syslog.conf<\/code> to <code>yes<\/code>. Restart the <code>auditd<\/code>service:<\/p>\n<pre>$ sudo service auditd restart<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000512<\/td>\n<td>CCI-000144<\/td>\n<td>medium<\/td>\n<td>The audit system must alert designated staff members when audit storage volume is full.<\/td>\n<td>RHEL6 does not support this requirement.<\/td>\n<td>This is a permanent finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent finding and cannot be fixed. An appropriate mitigation for the system must be implemented but this finding cannot be considered fixed.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000513<\/td>\n<td>CCI-000144<\/td>\n<td>medium<\/td>\n<td>The audit system must alert designated staff members when audit storage volume is generating disk errors.<\/td>\n<td>RHEL6 does not support this requirement.<\/td>\n<td>This is a permanent finding. If , this is a finding.<\/td>\n<td>This requirement is a permanent finding and cannot be fixed. An appropriate mitigation for the system must be implemented but this finding cannot be considered fixed.<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000518<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The system package management tool must verify permissions on all files and directories associated with packages.<\/td>\n<td>Permissions on system binaries and configuration files that are too generous could allow an unauthorized user to gain privileges that they should not have. The permissions set by the vendor should be maintained. Any deviations from this baseline should be investigated.<\/td>\n<td>The following command will list which files on the system have permissions different from what is expected by the RPM database:<\/p>\n<pre>$ rpm -Va | grep '^.M'<\/pre>\n<p>If there is output, this is a finding.<\/td>\n<td>The RPM package management system can check file access permissions of installed software packages, including many that are important to system security. After locating a file with incorrect permissions, run the following command to determine which package owns it:<\/p>\n<pre>$ rpm -qf <i>FILENAME<\/i><\/pre>\n<p>Next, run the following command to reset its permissions to the correct values:<\/p>\n<pre>$ sudo rpm --setperms <i>PACKAGENAME<\/i><\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000519<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>The system package management tool must verify contents of all files associated with packages.<\/td>\n<td>The hashes of important files like system executables should match the information given by the RPM database. Executables with erroneous hashes could be a sign of nefarious activity on the system.<\/td>\n<td>The following command will list which files on the system have file hashes different from what is expected by the RPM database.<\/p>\n<pre>$ rpm -Va | awk '$1 ~ \/..5\/ &amp;&amp; $2 != \"c\"'<\/pre>\n<p>If there is output, this is a finding.<\/td>\n<td>The RPM package management system can check the hashes of installed software packages, including many that are important to system security. Run the following command to list which files on the system have hashes that differ from what is expected by the RPM database:<\/p>\n<pre>$ rpm -Va | grep '^..5'<\/pre>\n<p>A &#8220;c&#8221; in the second column indicates that a file is a configuration file, which may appropriately be expected to change. If the file was not expected to change, investigate the cause of the change using audit logs or other means. The package can then be reinstalled to restore the file. Run the following command to determine which package owns the file:<\/p>\n<pre>$ rpm -qf <i>FILENAME<\/i><\/pre>\n<p>The package can be reinstalled from a yum repository using the command:<\/p>\n<pre>$ sudo yum reinstall <i>PACKAGENAME<\/i><\/pre>\n<p>Alternatively, the package can be reinstalled from trusted media using the command:<\/p>\n<pre>$ sudo rpm -Uvh <i>PACKAGENAME<\/i><\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000523<\/td>\n<td>CCI-000066<\/td>\n<td>medium<\/td>\n<td>The system&#8217;s local IPv6 firewall must implement a deny-all, allow-by-exception policy for inbound packets.<\/td>\n<td>In <code>ip6tables<\/code>, the default policy is applied only after all the applicable rules in the table are examined for a match. Setting the default policy to <code>DROP<\/code> implements proper design for a firewall, i.e. any packets which are not explicitly permitted should not be accepted.<\/td>\n<td>If IPv6 is disabled, this is not applicable.<\/p>\n<p>Inspect the file <code>\/etc\/sysconfig\/ip6tables<\/code> to determine the default policy for the INPUT chain. It should be set to DROP:<\/p>\n<pre>$ sudo grep \":INPUT\" \/etc\/sysconfig\/ip6tables<\/pre>\n<p>If the default policy for the INPUT chain is not set to DROP, this is a finding.<\/td>\n<td>To set the default policy to DROP (instead of ACCEPT) for the built-in INPUT chain which processes incoming packets, add or correct the following line in <code>\/etc\/sysconfig\/ip6tables<\/code>:<\/p>\n<pre>:INPUT DROP [0:0]<\/pre>\n<p>If changes were required, reload the ip6tables rules:<\/p>\n<pre>$ sudo service ip6tables reload<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000525<\/td>\n<td>CCI-000169<\/td>\n<td>low<\/td>\n<td>Auditing must be enabled at boot by setting a kernel parameter.<\/td>\n<td>Each process on the system carries an &#8220;auditable&#8221; flag which indicates whether its activities can be audited. Although <code>auditd<\/code> takes care of enabling this for all processes which launch after it does, adding the kernel argument ensures it is set for every process during boot.<\/td>\n<td>Inspect the kernel boot arguments (which follow the word <code>kernel<\/code>) in <code>\/etc\/grub.conf<\/code>. If they include <code>audit=1<\/code>, then auditing is enabled at boot time. If auditing is not enabled at boot time, this is a finding.<\/td>\n<td>To ensure all processes can be audited, even those which start prior to the audit daemon, add the argument <code>audit=1<\/code> to the kernel line in <code>\/etc\/grub.conf<\/code>, in the manner below:<\/p>\n<pre>kernel \/vmlinuz-version ro vga=ext root=\/dev\/VolGroup00\/LogVol00 rhgb quiet audit=1<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>RHEL-06-000526<\/td>\n<td>CCI-000366<\/td>\n<td>low<\/td>\n<td>Automated file system mounting tools must not be enabled unless needed.<\/td>\n<td>Disabling the automounter permits the administrator to statically control filesystem mounting through <code>\/etc\/fstab<\/code>.<\/td>\n<td>To check that the <code>autofs<\/code> service is disabled in system boot configuration, run the following command:<\/p>\n<pre># chkconfig <code>autofs<\/code> --list<\/pre>\n<p>Output should indicate the <code>autofs<\/code> service has either not been installed, or has been disabled at all runlevels, as shown in the example below:<\/p>\n<pre># chkconfig <code>autofs<\/code> --list\r\n<code>autofs<\/code>       0:off   1:off   2:off   3:off   4:off   5:off   6:off<\/pre>\n<p>Run the following command to verify <code>autofs<\/code> is disabled through current runtime configuration:<\/p>\n<pre># service autofs status<\/pre>\n<p>If the service is disabled the command will return the following output:<\/p>\n<pre>autofs is stopped<\/pre>\n<p>If the service is running, this is a finding.<\/td>\n<td>The <code>autofs<\/code> daemon mounts and unmounts filesystems, such as user home directories shared via NFS, on demand. In addition, autofs can be used to handle removable media, and the default configuration provides the cdrom device as <code>\/misc\/cd<\/code>. However, this method of providing access to removable media is not common, so autofs can almost always be disabled if NFS is not in use. Even if NFS is required, it may be possible to configure filesystem mounts statically by editing <code>\/etc\/fstab<\/code> rather than relying on the automounter.<\/p>\n<p>The <code>autofs<\/code> service can be disabled with the following command:<\/p>\n<pre># chkconfig autofs off<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000006-NA<\/td>\n<td>CCI-000021<\/td>\n<td>medium<\/td>\n<td>The operating system must enforce dual authorization, based on organizational policies and procedures for organization defined privileged commands.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000008-NA<\/td>\n<td>CCI-000024<\/td>\n<td>medium<\/td>\n<td>The operating system must prevent access to organization defined security-relevant information except during secure, non-operable system states.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000009-NA<\/td>\n<td>CCI-000025<\/td>\n<td>medium<\/td>\n<td>The operating system must enforce information flow control using explicit security attributes on information, source, and destination objects as a basis for flow control decisions.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000010-NA<\/td>\n<td>CCI-000026<\/td>\n<td>medium<\/td>\n<td>The operating system must enforce information flow control using protected processing domains (e.g., domain type-enforcement) as a basis for flow control decisions.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000011-NA<\/td>\n<td>CCI-000027<\/td>\n<td>medium<\/td>\n<td>The operating system must enforce dynamic information flow control based on policy that must allow or disallow information flows based upon changing conditions or operational considerations.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000012-NA<\/td>\n<td>CCI-000028<\/td>\n<td>medium<\/td>\n<td>The operating system must prevent encrypted data from bypassing content checking mechanisms.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000013-NA<\/td>\n<td>CCI-000029<\/td>\n<td>medium<\/td>\n<td>The operating system must enforce organization defined limitations on the embedding of data types within other data types.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000014-NA<\/td>\n<td>CCI-000030<\/td>\n<td>medium<\/td>\n<td>The operating system must enforce information flow control on metadata.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000016-NA<\/td>\n<td>CCI-000032<\/td>\n<td>medium<\/td>\n<td>The operating system must enforce information flow control using organization defined security policy filters as a basis for flow control decisions.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000018-NA<\/td>\n<td>CCI-000035<\/td>\n<td>medium<\/td>\n<td>The operating system must provide the capability for a privileged administrator to configure the organization defined security policy filters to support different security policies.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000019-NA<\/td>\n<td>CCI-000037<\/td>\n<td>medium<\/td>\n<td>The operating system must implement separation of duties through assigned information system access authorizations.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000060-NA<\/td>\n<td>CCI-000165<\/td>\n<td>medium<\/td>\n<td>The operating system must produce audit records on hardware-enforced, write-once media.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000061-NA<\/td>\n<td>CCI-000166<\/td>\n<td>medium<\/td>\n<td>The operating system must protect against an individual falsely denying having performed a particular action.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000068-NA<\/td>\n<td>CCI-000187<\/td>\n<td>medium<\/td>\n<td>The operating system, for PKI-based authentication must map the authenticated identity to the user account.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000074-NA<\/td>\n<td>CCI-000197<\/td>\n<td>medium<\/td>\n<td>The operating system must enforce password encryption for transmission.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000081-NA<\/td>\n<td>CCI-000218<\/td>\n<td>medium<\/td>\n<td>The operating system, when transferring information between different security domains, must identify information flows by data type specification and usage.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000082-NA<\/td>\n<td>CCI-000219<\/td>\n<td>medium<\/td>\n<td>The operating system, when transferring information between different security domains, must decompose information into policy-relevant subcomponents for submission to policy enforcement mechanisms.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000083-NA<\/td>\n<td>CCI-000221<\/td>\n<td>medium<\/td>\n<td>The operating system must enforce security policies regarding information on interconnected systems.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000091-NA<\/td>\n<td>CCI-000354<\/td>\n<td>medium<\/td>\n<td>The operating system must enforce a two-person rule for changes to organization defined information system components and system-level information.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000092-NA<\/td>\n<td>CCI-000371<\/td>\n<td>medium<\/td>\n<td>The operating system must employ automated mechanisms to centrally apply configuration settings.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000093-NA<\/td>\n<td>CCI-000372<\/td>\n<td>medium<\/td>\n<td>The operating system must employ automated mechanisms to centrally verify configuration settings.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000101-NA<\/td>\n<td>CCI-000539<\/td>\n<td>medium<\/td>\n<td>The operating system must conduct backups of operating system documentation including security-related documentation per organization defined frequency to conduct backups that is consistent with recovery time and recovery point objectives.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000102-NA<\/td>\n<td>CCI-000553<\/td>\n<td>medium<\/td>\n<td>The operating system must implement transaction recovery for transaction-based systems.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000107-NA<\/td>\n<td>CCI-000767<\/td>\n<td>medium<\/td>\n<td>The operating system must use multifactor authentication for local access to privileged accounts.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000108-NA<\/td>\n<td>CCI-000768<\/td>\n<td>medium<\/td>\n<td>The operating system must use multifactor authentication for local access to non-privileged accounts.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000110-NA<\/td>\n<td>CCI-000771<\/td>\n<td>medium<\/td>\n<td>The operating system must use multifactor authentication for network access to privileged accounts where one of the factors is provided by a device separate from the information system being accessed.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000111-NA<\/td>\n<td>CCI-000772<\/td>\n<td>medium<\/td>\n<td>The operating system must use multifactor authentication for network access to non-privileged accounts where one of the factors is provided by a device separate from the operating system being accessed.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000115-NA<\/td>\n<td>CCI-000779<\/td>\n<td>medium<\/td>\n<td>The operating system must authenticate devices before establishing remote network connections using bidirectional cryptographically based authentication between devices.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000116-NA<\/td>\n<td>CCI-000780<\/td>\n<td>medium<\/td>\n<td>The operating system must authenticate devices before establishing wireless network connections using bidirectional cryptographically based authentication between devices.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000117-NA<\/td>\n<td>CCI-000781<\/td>\n<td>medium<\/td>\n<td>The operating system must authenticate devices before establishing network connections using bidirectional cryptographically based authentication between devices.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000122-NA<\/td>\n<td>CCI-000831<\/td>\n<td>medium<\/td>\n<td>The operating system must implement a configurable capability to automatically disable the operating system if any of the organization defined lists of security violations are detected.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000125-NA<\/td>\n<td>CCI-000877<\/td>\n<td>medium<\/td>\n<td>The operating system must employ strong identification and authentication techniques in the establishment of nonlocal maintenance and diagnostic sessions.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000128-NA<\/td>\n<td>CCI-000884<\/td>\n<td>medium<\/td>\n<td>The operating system must protect nonlocal maintenance sessions through the use of a strong authenticator tightly bound to the user.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000130-NA<\/td>\n<td>CCI-001009<\/td>\n<td>medium<\/td>\n<td>The operating system must use cryptographic mechanisms to protect and restrict access to information on portable digital media.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000140-NA<\/td>\n<td>CCI-001092<\/td>\n<td>medium<\/td>\n<td>The operating system must protect against or must limit the effects of the organization defined or referenced types of Denial of Service attacks.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000141-NA<\/td>\n<td>CCI-001094<\/td>\n<td>medium<\/td>\n<td>The operating system must restrict the ability of users to launch Denial of Service attacks against other information systems or networks.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000149-NA<\/td>\n<td>CCI-001112<\/td>\n<td>medium<\/td>\n<td>The operating system must route organization defined internal communications traffic to organization defined external networks through authenticated proxy servers within the managed interfaces of boundary protection devices.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000150<\/td>\n<td>CCI-001115<\/td>\n<td>medium<\/td>\n<td>The operating system, at managed interfaces, must deny network traffic and must audit internal users (or malicious code) posing a threat to external information systems.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000153-NA<\/td>\n<td>CCI-001123<\/td>\n<td>medium<\/td>\n<td>The operating system must route all networked, privileged accesses through a dedicated, managed interface for purposes of access control and auditing.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000154-NA<\/td>\n<td>CCI-001124<\/td>\n<td>medium<\/td>\n<td>The operating system must prevent discovery of specific system components (or devices) composing a managed interface.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000155-NA<\/td>\n<td>CCI-001125<\/td>\n<td>medium<\/td>\n<td>The operating system must employ automated mechanisms to enforce strict adherence to protocol format.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000156-NA<\/td>\n<td>CCI-001126<\/td>\n<td>medium<\/td>\n<td>The operating system must fail securely in the event of an operational failure of a boundary protection device.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000161-NA<\/td>\n<td>CCI-001131<\/td>\n<td>medium<\/td>\n<td>The operating system must employ cryptographic mechanisms to prevent unauthorized disclosure of information during transmission unless otherwise protected by alternative physical measures.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000162-NA<\/td>\n<td>CCI-001132<\/td>\n<td>medium<\/td>\n<td>The operating system must maintain the confidentiality of information during aggregation, packaging, and transformation in preparation for transmission.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000164-NA<\/td>\n<td>CCI-001135<\/td>\n<td>medium<\/td>\n<td>The operating system must establish a trusted communications path between the user and organization defined security functions within the operating system.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000165-NA<\/td>\n<td>CCI-001140<\/td>\n<td>medium<\/td>\n<td>The operating system must produce, control, and distribute symmetric cryptographic keys using NIST-approved or NSA-approved key management technology and processes.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000166-NA<\/td>\n<td>CCI-001141<\/td>\n<td>medium<\/td>\n<td>The operating system must produce, control, and distribute symmetric and asymmetric cryptographic keys using NSA-approved key management technology and processes.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000167-NA<\/td>\n<td>CCI-001142<\/td>\n<td>medium<\/td>\n<td>The operating system must produce, control, and distribute asymmetric cryptographic keys using approved PKI Class 3 certificates or prepositioned keying material.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000168-NA<\/td>\n<td>CCI-001143<\/td>\n<td>medium<\/td>\n<td>The operating system must produce, control, and distribute asymmetric cryptographic keys using approved PKI Class 3 or Class 4 certificates and hardware security tokens that protect the user&#8217;s private key.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000172-NA<\/td>\n<td>CCI-001147<\/td>\n<td>medium<\/td>\n<td>The operating system must employ FIPS-validated cryptography to protect information when it must be separated from individuals who have the necessary clearances, yet lack the necessary access approvals.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000173-NA<\/td>\n<td>CCI-001148<\/td>\n<td>medium<\/td>\n<td>The operating system must employ FIPS-validate or NSA-approved cryptography to implement digital signatures.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000174-NA<\/td>\n<td>CCI-001149<\/td>\n<td>medium<\/td>\n<td>The operating system must protect the integrity and availability of publicly available information and applications.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000175-NA<\/td>\n<td>CCI-001150<\/td>\n<td>medium<\/td>\n<td>The operating system must prohibit remote activation of collaborative computing devices, excluding the organization defined exceptions where remote activation is to be allowed.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000177-NA<\/td>\n<td>CCI-001157<\/td>\n<td>medium<\/td>\n<td>The operating system must associate security attributes with information exchanged between information systems.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000179-NA<\/td>\n<td>CCI-001159<\/td>\n<td>medium<\/td>\n<td>The operating system must issue or obtain public key certificates under an appropriate certificate policy from an approved service provider.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000180-NA<\/td>\n<td>CCI-001166<\/td>\n<td>medium<\/td>\n<td>The operating system must implement detection and inspection mechanisms to identify unauthorized mobile code.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000181-NA<\/td>\n<td>CCI-001695<\/td>\n<td>medium<\/td>\n<td>The operating system must prevent the execution of prohibited mobile code.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000182-NA<\/td>\n<td>CCI-001169<\/td>\n<td>medium<\/td>\n<td>The operating system must prevent the download of prohibited mobile code.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000183-NA<\/td>\n<td>CCI-001170<\/td>\n<td>medium<\/td>\n<td>The operating system must prevent the automatic execution of mobile code in organization defined software applications and must require organization defined actions prior to executing the code.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000187-NA<\/td>\n<td>CCI-001210<\/td>\n<td>medium<\/td>\n<td>The operating system at organization defined information system components must load and execute the operating environment from hardware-enforced, read-only media.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000188-NA<\/td>\n<td>CCI-001211<\/td>\n<td>medium<\/td>\n<td>The operating system at organization defined information system components must load and execute organization defined applications from hardware-enforced, read-only media.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000193-NA<\/td>\n<td>CCI-001239<\/td>\n<td>medium<\/td>\n<td>The operating system must have malicious code protection mechanisms at system entry and exit points to detect and eradicate malicious code transported by electronic mail, electronic mail attachments, web accesses, removable media, or other common means.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000204-NA<\/td>\n<td>CCI-001311<\/td>\n<td>medium<\/td>\n<td>The operating system must identify potentially security-relevant error conditions.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000205-NA<\/td>\n<td>CCI-001312<\/td>\n<td>medium<\/td>\n<td>The operating system must generate error messages providing information necessary for corrective actions without revealing organization defined sensitive or potentially harmful information in error logs and administrative messages that could be exploited.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000209-NA<\/td>\n<td>CCI-001339<\/td>\n<td>medium<\/td>\n<td>The operating system must validate the binding of the information producer&#8217;s identity to the information.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000210-NA<\/td>\n<td>CCI-001340<\/td>\n<td>medium<\/td>\n<td>The operating system must maintain reviewer\/releaser identity and credentials within the established chain of custody for all information reviewed or released.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000211-NA<\/td>\n<td>CCI-001341<\/td>\n<td>medium<\/td>\n<td>The operating system must validate the binding of the reviewer&#8217;s identity to the information at the transfer\/release point prior to release\/transfer from one security domain to another security domain.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000214-NA<\/td>\n<td>CCI-001274<\/td>\n<td>medium<\/td>\n<td>The operating system must employ automated mechanisms to alert security personnel of any organization defined inappropriate or unusual activities with security implications.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000216-NA<\/td>\n<td>CCI-001350<\/td>\n<td>medium<\/td>\n<td>The operating system must use cryptographic mechanisms to protect the integrity of audit information.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000217-NA<\/td>\n<td>CCI-001352<\/td>\n<td>medium<\/td>\n<td>The operating system must protect the audit records resulting from nonlocal accesses to privileged accounts and the execution of privileged functions.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000219-NA<\/td>\n<td>CCI-001356<\/td>\n<td>medium<\/td>\n<td>The operating system must monitor for atypical usage of operating system accounts.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000222-NA<\/td>\n<td>CCI-001372<\/td>\n<td>medium<\/td>\n<td>The operating system, when transferring information between different security domains, must implement policy filters constraining data structure and content to organization defined information security policy requirements.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000223-NA<\/td>\n<td>CCI-001373<\/td>\n<td>medium<\/td>\n<td>The operating system, when transferring information between different security domains, must detect unsanctioned information.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000224-NA<\/td>\n<td>CCI-001374<\/td>\n<td>medium<\/td>\n<td>The operating system, when transferring information between different security domains, must prohibit the transfer of unsanctioned information in accordance with the security policy.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000225-NA<\/td>\n<td>CCI-001376<\/td>\n<td>medium<\/td>\n<td>The operating system must uniquely identify source domains for information transfer.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000226-NA<\/td>\n<td>CCI-001377<\/td>\n<td>medium<\/td>\n<td>The operating system must uniquely authenticate source domains for information transfer.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000227-NA<\/td>\n<td>CCI-001383<\/td>\n<td>medium<\/td>\n<td>The operating system must provide additional protection for mobile devices accessed via login by purging information from the device after organization defined number of consecutive, unsuccessful login attempts to the mobile device.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000229-NA<\/td>\n<td>CCI-000370<\/td>\n<td>medium<\/td>\n<td>The operating system must employ automated mechanisms to centrally manage configuration settings.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000233-NA<\/td>\n<td>CCI-001391<\/td>\n<td>medium<\/td>\n<td>The operating system must notify the user of the number of successful logins\/accesses that occur during the organization defined time period.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000234-NA<\/td>\n<td>CCI-001392<\/td>\n<td>medium<\/td>\n<td>The operating system must notify the user of the number of unsuccessful login\/access attempts that occur during organization defined time period.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000235-NA<\/td>\n<td>CCI-001395<\/td>\n<td>medium<\/td>\n<td>The operating system must notify the user of organization defined security-related changes to the user&#8217;s account that occur during the organization defined time period.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000238-NA<\/td>\n<td>CCI-001401<\/td>\n<td>medium<\/td>\n<td>The operating system must support and maintain the binding of organization defined security attributes to information in transmission.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000251-NA<\/td>\n<td>CCI-001454<\/td>\n<td>medium<\/td>\n<td>The operating system must ensure remote sessions for accessing an organization defined list of security functions and security-relevant information are audited.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000252-NA<\/td>\n<td>CCI-001462<\/td>\n<td>medium<\/td>\n<td>The operating system must provide the capability to capture\/record and log all content related to a user session.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000261-NA<\/td>\n<td>CCI-001555<\/td>\n<td>medium<\/td>\n<td>The operating system uniquely must identify destination domains for information transfer.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000262-NA<\/td>\n<td>CCI-001556<\/td>\n<td>medium<\/td>\n<td>The operating system uniquely must authenticate destination domains for information transfer.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000263-NA<\/td>\n<td>CCI-001557<\/td>\n<td>medium<\/td>\n<td>The operating system must track problems associated with the information transfer.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000267-NA<\/td>\n<td>CCI-001632<\/td>\n<td>medium<\/td>\n<td>The operating system must protect nonlocal maintenance sessions by separating the maintenance session from other network sessions with the information system by either physically separated communications paths or logically separated communications paths.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000268-NA<\/td>\n<td>CCI-001662<\/td>\n<td>medium<\/td>\n<td>The operating system must take corrective actions, when unauthorized mobile code is identified.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000274-NA<\/td>\n<td>CCI-001683<\/td>\n<td>medium<\/td>\n<td>The operating system must notify, as required, appropriate individuals when accounts are created.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000275-NA<\/td>\n<td>CCI-001684<\/td>\n<td>medium<\/td>\n<td>The operating system must notify, as required, appropriate individuals when accounts are modified.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000276-NA<\/td>\n<td>CCI-001685<\/td>\n<td>medium<\/td>\n<td>The operating system must notify, as required, appropriate individuals when account is disabled.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<tr>\n<td>SRG-OS-000277-NA<\/td>\n<td>CCI-001686<\/td>\n<td>medium<\/td>\n<td>The operating system must notify, as required, appropriate individuals for account termination.<\/td>\n<td>The guidance does not meet this requirement. The requirement is impractical or out of scope.<\/td>\n<td>RHEL6 cannot support this requirement without assistance from an external application, policy, or service. This requirement is NA. If , this is a finding.<\/td>\n<td>This requirement is NA. No fix is required.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp;<\/p>\n<p> Rules In Pre-release Final STIG for Red Hat Enterprise Linux 6 <\/p>\n<p>&nbsp;<\/p>\n<p> V-ID CCI CAT Title Description Check Procedures Fixtext RHEL-06-000001 CCI-000366 low The system must use a separate file system for \/tmp. The \/tmp partition is used as temporary storage by many programs. Placing \/tmp in its own partition enables the setting of [&#8230;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5,4,50],"tags":[],"_links":{"self":[{"href":"https:\/\/mohan.sg\/index.php?rest_route=\/wp\/v2\/posts\/4046"}],"collection":[{"href":"https:\/\/mohan.sg\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mohan.sg\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mohan.sg\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mohan.sg\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=4046"}],"version-history":[{"count":1,"href":"https:\/\/mohan.sg\/index.php?rest_route=\/wp\/v2\/posts\/4046\/revisions"}],"predecessor-version":[{"id":4047,"href":"https:\/\/mohan.sg\/index.php?rest_route=\/wp\/v2\/posts\/4046\/revisions\/4047"}],"wp:attachment":[{"href":"https:\/\/mohan.sg\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4046"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mohan.sg\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=4046"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mohan.sg\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=4046"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}