CCE ID v5 CCE Title USGCB Setting Technical Mechanism Configuration Details Rationale Impact 800-53 Mapping National Information Assurance Partnership Operating System Protection Profile Center for Internet Security Defense Information Systems Agency Security Security Requirements Guide Configuration Group
CCE-27043-9 Disable Interactive Boot disable via grub To disable the ability for users to perform interactive startups, perform both of the following: Edit the file /etc/sysconfig/init. Add or correct the line: PROMPT=noInspect the kernel boot arguments (which follow the word kernel) in /etc/grub.conf and ensure the confirm argument is not present. Both the PROMPT option of the /etc/sysconfig/init file and the confirm kernel boot argument of the /etc/grub.conf file allow 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. Using interactive boot, the console user could disable auditing, firewalls, or other services, weakening system security. medium CM-6(a),SC-2(1) NaN NaN SRG-OS-000080 Protect Physical Console Access
CCE-27040-5 Require Authentication for Single User Mode configure via sysconfig 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. 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 /etc/sysconfig/init: SINGLE=/sbin/sulogin 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. medium AC-3,CM-6(a),IA-2 FIA_UAU.1 1.4.3 SRG-OS-000080 Protect Physical Console Access
CCE-26940-7 Install the screen Package install via yum To enable console screen locking, install the screen package. The screen package can be installed with the following command: $ sudo yum install screen Instruct users to begin new terminal sessions with the following command: $ screen The console can now be locked with the following key combination: ctrl+a x A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not logout because of the temporary nature of the absence. Rather than relying on the user to manually lock their operation system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock. The screen package allows for a session lock to be implemented and configured. medium CM-6(a) FMT_MOF_EXT.1 NaN SRG-OS-000030 Configure Console Screen Locking
CCE-27440-7 Enable Smart Card Login enable NaN To enable smart card authentication, consult the documentation at: https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Managing_Smart_Cards/enabling-smart-card-login.html For guidance on enabling SSH to authenticate against a Common Access Card (CAC), consult documentation at: https://access.redhat.com/solutions/82273 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. medium CM-6(a),IA-2(1),IA-2(11),IA-2(2),IA-2(3),IA-2(4),IA-2(6),IA-2(7) NaN NaN SRG-OS-000105 Hardware Tokens for Authentication
CCE-27333-4 Set Interactive Session Timeout 600 via TMOUT Setting the TMOUT option in /etc/profile ensures that all user sessions will terminate based on inactivity. The TMOUT setting in /etc/profile should read as follows: TMOUT= Terminating an idle session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. medium AC-12,AC-2(5),CM-6(a),SC-10 FMT_MOF_EXT.1 NaN SRG-OS-000163-GPOS-00072 Secure Session Configuration Files for Login Accounts
CCE-27457-1 Limit the Number of Concurrent Login Sessions Allowed Per User 10 via limits.conf 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. To set the number of concurrent sessions per user add the following line in /etc/security/limits.conf or a file under /etc/security/limits.d/: * hard maxlogins 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. low AC-10,CM-6(a) NaN NaN SRG-OS-000027 Secure Session Configuration Files for Login Accounts
CCE-26981-1 Ensure that User Home Directories are not Group-Writable or World-Readable 750 via chmod For each human user of the system, view the permissions of the user's home directory: # ls -ld /home/USER Ensure that the directory is not group-writable and that it is not world-readable. If necessary, repair the permissions: # chmod g-w /home/USER # chmod o-rwx /home/USER User home directories contain many configuration files which affect the behavior of a user's account. No user should ever have write permission to another user's home directory. Group shared directories can be configured in sub-directories or elsewhere in the filesystem if they are needed. Typically, user home directories should not be world-readable, as it would disclose file names to other users. If a subset of users need read access to one another's home directories, this can be provided using groups or ACLs. medium AC-6(1),CM-6(a),CM-6(a) NaN NaN NaN Secure Session Configuration Files for Login Accounts
CCE-26826-8 Ensure that Root's Path Does Not Include Relative Paths or Null Directories disable via PATH Ensure that none of the directories in root's path is equal to a single . character, or that it contains any instances that lead to relative path traversal, such as .. or beginning a path without the slash (/) character. Also ensure that there are no "empty" elements in the path, such as in these examples: PATH=:/bin PATH=/bin: PATH=/bin::/sbin These empty elements have the same effect as a single . character. Including these entries increases the risk that root could execute code from an untrusted location. unknown CM-6(a),CM-6(a) NaN NaN NaN Ensure that No Dangerous Directories Exist in Root's Path
CCE-26768-2 Ensure that Root's Path Does Not Include World or Group-Writable Directories 755 via chmod For each element in root's path, run: # ls -ld DIR and ensure that write permissions are disabled for group and other. Such entries increase the risk that root could execute code provided by unprivileged users, and potentially malicious code. medium CM-6(a),CM-6(a) NaN NaN NaN Ensure that No Dangerous Directories Exist in Root's Path
CCE-26669-2 Ensure the Default Umask is Set Correctly in /etc/profile “077” via UMASK To ensure the default umask controlled by /etc/profile is set properly, add or correct the umask setting in /etc/profile to read as follows: umask 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. unknown AC-6(1),CM-6(a) NaN 5.4.4 SRG-OS-999999 Ensure that Users Have Sensible Umask Values
CCE-26371-5 Ensure the Default Umask is Set Correctly in login.defs “077” via UMASK To ensure the default umask controlled by /etc/login.defs is set properly, add or correct the UMASK setting in /etc/login.defs to read as follows: UMASK 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. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-999999 Ensure that Users Have Sensible Umask Values
CCE-27034-8 Ensure the Default C Shell Umask is Set Correctly “077” via UMASK To ensure the default umask for users of the C shell is set properly, add or correct the umask setting in /etc/csh.cshrc to read as follows: umask 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. unknown AC-6(1),CM-6(a) NaN NaN SRG-OS-999999 Ensure that Users Have Sensible Umask Values
CCE-26917-5 Ensure the Default Bash Umask is Set Correctly “077” via UMASK To ensure the default umask for users of the Bash shell is set properly, add or correct the umask setting in /etc/bashrc to read as follows: umask 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. unknown AC-6(1),CM-6(a) NaN 5.4.4 SRG-OS-999999 Ensure that Users Have Sensible Umask Values
CCE-27291-4 Ensure PAM Displays Last Logon/Access Notification showfailed via pam_lastlog To configure the system to notify users of last logon/access using pam_lastlog, add or correct the pam_lastlog settings in /etc/pam.d/postlogin to read as follows: session [success=1 default=ignore] pam_succeed_if.so service !~ gdm* service !~ su* quiet session [default=1] pam_lastlog.so nowtmp showfailed session optional pam_lastlog.so silent noupdate showfailed 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. low AC-9(1),CM-6(a) NaN NaN SRG-OS-999999 Protect Accounts by Configuring PAM
CCE-27110-6 Set Lockout Time for Failed Password Attempts 0 via pam_faillock To configure the system to lock out accounts after a number of incorrect login attempts and require an administrator to unlock the account using pam_faillock.so, modify the content of both /etc/pam.d/system-auth and /etc/pam.d/password-auth as follows: add the following line immediately before the pam_unix.so statement in the AUTH section: auth required pam_faillock.so preauth silent deny= unlock_time= fail_interval= add the following line immediately after the pam_unix.so statement in the AUTH section: auth [default=die] pam_faillock.so authfail deny= unlock_time= fail_interval= add the following line immediately before the pam_unix.so statement in the ACCOUNT section: account required pam_faillock.so If unlock_time is set to 0, manual intervention by an administrator is required to unlock a user. 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. medium AC-7(b),CM-6(a) FIA_AFL.1 5.3.2 SRG-OS-000022 Set Lockouts for Failed Password Attempts
CCE-27215-3 Set Interval For Counting Failed Password Attempts 604800 via pam_faillock Utilizing pam_faillock.so, the fail_interval directive configures the system to lock out an account after a number of incorrect login attempts within a specified time period. Modify the content of both /etc/pam.d/system-auth and /etc/pam.d/password-auth as follows: Add the following line immediately before the pam_unix.so statement in the AUTH section: auth required pam_faillock.so preauth silent deny= unlock_time= fail_interval= Add the following line immediately after the pam_unix.so statement in the AUTH section: auth [default=die] pam_faillock.so authfail deny= unlock_time= fail_interval= Add the following line immediately before the pam_unix.so statement in the ACCOUNT section: account required pam_faillock.so By limiting the number of failed logon attempts the risk of unauthorized system access via user password guessing, otherwise known as brute-forcing, is reduced. Limits are imposed by locking the account. medium AC-7(a),CM-6(a) FIA_AFL.1 NaN SRG-OS-000249 Set Lockouts for Failed Password Attempts
CCE-26844-1 Set Deny For Failed Password Attempts 3 via pam_faillock To configure the system to lock out accounts after a number of incorrect login attempts using pam_faillock.so, modify the content of both /etc/pam.d/system-auth and /etc/pam.d/password-auth as follows: add the following line immediately before the pam_unix.so statement in the AUTH section: auth required pam_faillock.so preauth silent deny= unlock_time= fail_interval= add the following line immediately after the pam_unix.so statement in the AUTH section: auth [default=die] pam_faillock.so authfail deny= unlock_time= fail_interval= add the following line immediately before the pam_unix.so statement in the ACCOUNT section: account required pam_faillock.so Locking out user accounts after a number of incorrect attempts prevents direct password guessing attacks. medium AC-7(a),CM-6(a) FIA_AFL.1 5.3.2 SRG-OS-000021 Set Lockouts for Failed Password Attempts
CCE-26741-9 Limit Password Reuse 5 via pam_unix Do not allow users to reuse recent passwords. This can be accomplished by using the remember option for the pam_unix or pam_pwhistory PAM modules. In the file /etc/pam.d/system-auth, append remember= to the line which refers to the pam_unix.so or pam_pwhistory.somodule, as shown below: for the pam_unix.so case: password sufficient pam_unix.so ...existing_options... remember= for the pam_pwhistory.so case: password requisite pam_pwhistory.so ...existing_options... remember= The DoD STIG requirement is 5 passwords. Preventing re-use of previous passwords helps ensure that a compromised password is not re-used by a user. medium IA-5(1)(e),IA-5(f) NaN 5.3.3 SRG-OS-000077 Set Lockouts for Failed Password Attempts
CCE-26374-9 Set Password Strength Minimum Digit Characters 1 via pam_cracklib The pam_cracklib module's dcredit 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 dcredit=-1 after pam_cracklib.so to require use of a digit in passwords. Requiring digits makes password guessing attacks more difficult by ensuring a larger search space. unknown CM-6(a),IA-5(1)(a),IA-5(4),IA-5(c) NaN NaN SRG-OS-000071 Set Password Quality Requirements, if using pam_cracklib
CCE-26409-3 Set Password Strength Minimum Special Characters 1 via pam_cracklib The pam_cracklib module's ocredit= parameter controls requirements for usage of special (or ``other'') 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 ocredit= after pam_cracklib.so to require use of a special character in passwords. Requiring a minimum number of special characters makes password guessing attacks more difficult by ensuring a larger search space. unknown CM-6(a),IA-5(1)(a),IA-5(4),IA-5(c) NaN NaN SRG-OS-000266 Set Password Quality Requirements, if using pam_cracklib
CCE-26615-5 Set Password Strength Minimum Different Characters 4 via pam_cracklib The pam_cracklib module's difok parameter controls requirements for usage of different characters during a password change. Add difok= after pam_cracklib.so to require differing characters when changing passwords. The DoD requirement is 4. 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. unknown CM-6(a),IA-5(1)(b),IA-5(4),IA-5(c) NaN NaN SRG-OS-000072 Set Password Quality Requirements, if using pam_cracklib
CCE-26631-2 Set Password Strength Minimum Lowercase Characters 1 via pam_cracklib The pam_cracklib module's lcredit= 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 lcredit=-1 after pam_cracklib.so to require use of a lowercase character in passwords. Requiring a minimum number of lowercase characters makes password guessing attacks more difficult by ensuring a larger search space. unknown CM-6(a),IA-5(1)(a),IA-5(4),IA-5(c) NaN NaN SRG-OS-000070 Set Password Quality Requirements, if using pam_cracklib
CCE-26601-5 Set Password Strength Minimum Uppercase Characters 1 via pam_cracklib The pam_cracklib module's ucredit= 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 ucredit=-1 after pam_cracklib.so to require use of an upper case character in passwords. Requiring a minimum number of uppercase characters makes password guessing attacks more difficult by ensuring a larger search space. unknown CM-6(a),IA-5(1)(a),IA-5(4),IA-5(c) NaN NaN SRG-OS-000069 Set Password Quality Requirements, if using pam_cracklib
CCE-27123-9 Set Password Retry Prompts Permitted Per-Session 3 via pam_cracklib To configure the number of retry prompts that are permitted per-session: Edit the pam_cracklib.so statement in /etc/pam.d/system-auth to show retry=, or a lower value if site policy is more restrictive. The DoD requirement is a maximum of 3 prompts per session. Setting the password retry prompts that are permitted on a per-session basis to a low value requires some software, such as SSH, to re-connect. This can slow down and draw additional attention to some types of password-guessing attacks. Note that this is different from account lockout, which is provided by the pam_faillock module. unknown AC-7(a),CM-6(a) NaN NaN NaN Set Password Quality Requirements, if using pam_cracklib
CCE-27115-5 Set Password Strength Minimum Different Categories 3 via pam_cracklib The pam_cracklib module's minclass parameter controls requirements for usage of different character classes, or types, of character that must exist in a password before it is considered valid. For example, setting this value to three (3) requires that any password must have characters from at least three different categories in order to be approved. The default value is zero (0), meaning there are no required classes. There are four categories available: * Upper-case characters * Lower-case characters * Digits * Special characters (for example, punctuation) Add minclass= after pam_cracklib.so entry into the /etc/pam.d/system-auth file in order to require differing categories of characters when changing passwords. For example to require at least three character classes to be used in password, use minclass=3. Requiring a minimum number of character categories makes password guessing attacks more difficult by ensuring a larger search space. unknown NaN NaN NaN NaN Set Password Quality Requirements, if using pam_cracklib
CCE-27227-8 Set Password to Maximum of Three Consecutive Repeating Characters 3 via pam_cracklib The pam_cracklib module's maxrepeat 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 maxrepeat= after pam_cracklib.so to prevent a run of ( + 1) or more identical characters: password required pam_cracklib.so maxrepeat= Passwords with excessive repeating characters may be more vulnerable to password-guessing attacks. unknown CM-6(a),IA-5(4),IA-5(c) NaN NaN SRG-OS-999999 Set Password Quality Requirements, if using pam_cracklib
CCE-82017-5 Set Password Minimum Length 15 via pam_cracklib The pam_cracklib module's minlen parameter controls requirements for minimum characters required in a password. Add minlen= after pam_pwquality to set minimum password length requirements. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to exponentially increase the time and/or resources required to compromise the password. unknown CM-6(a),IA-5(1)(a),IA-5(4),IA-5(c) NaN NaN NaN Set Password Quality Requirements, if using pam_cracklib
CCE-27228-6 Set Password Hashing Algorithm in /etc/login.defs SHA512 via login.defs In /etc/login.defs, add or correct the following line to ensure the system will use SHA-512 as the hashing algorithm: ENCRYPT_METHOD SHA512 Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords that are encrypted with a weak algorithm are no more protected than if they are kept in plain text. Using a stronger hashing algorithm makes password cracking attacks more difficult. medium CM-6(a),IA-5(1)(c),IA-5(c) NaN 6.3.1 SRG-OS-000120 Set Password Hashing Algorithm
CCE-26303-8 Set PAM's Password Hashing Algorithm sha512 via pam_unix The PAM system service can be configured to only store encrypted representations of passwords. In /etc/pam.d/system-auth, the password section of the file controls which PAM modules execute during a password change. Set the pam_unix.so module in the password section to include the argument sha512, as shown below: password sufficient pam_unix.so sha512 other arguments... 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. Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords that are encrypted with a weak algorithm are no more protected than if they are kepy in plain text. This setting ensures user and group account administration utilities are configured to store only encrypted representations of passwords. Additionally, the crypt_style configuration option ensures the use of a strong hashing algorithm that makes password cracking attacks more difficult. medium CM-6(a),IA-5(1)(c),IA-5(c) NaN NaN SRG-OS-000120 Set Password Hashing Algorithm
CCE-27229-4 Set Password Hashing Algorithm in /etc/libuser.conf sha513 via libuser.conf In /etc/libuser.conf, add or correct the following line in its [defaults] section to ensure the system will use the SHA-512 algorithm for password hashing: crypt_style = sha512 Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords that are encrypted with a weak algorithm are no more protected than if they are kepy in plain text. This setting ensures user and group account administration utilities are configured to store only encrypted representations of passwords. Additionally, the crypt_style configuration option ensures the use of a strong hashing algorithm that makes password cracking attacks more difficult. medium CM-6(a),IA-5(1)(c),IA-5(c) NaN NaN SRG-OS-000120 Set Password Hashing Algorithm
CCE-27047-0 Restrict Serial Port Root Logins ttyS0 TtyS1 via /etc/securetty To restrict root logins on serial ports, ensure lines of this form do not appear in /etc/securetty: ttyS0 ttyS1 Preventing direct root login to serial port interfaces helps ensure accountability for actions taken on the systems using the root account. medium AC-6,CM-6(a) NaN NaN SRG-OS-000109 Restrict Root Logins
CCE-26891-2 Direct root Logins Not Allowed “” via /etc/securetty To further limit access to the root account, administrators can disable root logins at the console by editing the /etc/securetty file. This file lists all devices the root user is allowed to login to. If the file does not exist at all, the root user can login through any communication device on the system, whether via the console or via a raw network interface. This is dangerous as user can login to the system as root via Telnet, which sends the password in plain text over the network. By default, Red Hat Enterprise Linux 6's /etc/securetty file only allows the root user to login at the console physically attached to the system. To prevent root from logging in, remove the contents of this file. To prevent direct root logins, remove the contents of this file by typing the following command: $ sudo echo > /etc/securetty Disabling direct root logins ensures proper accountability and multifactor authentication to privileged accounts. Users will first login, then escalate to privileged (root) access via su / sudo. This is required for FISMA Low and FISMA Moderate systems. medium CM-6(a),IA-2 NaN NaN NaN Restrict Root Logins
CCE-27125-4 Root Path Must Be Vendor Default verify via PATH Assuming root shell is bash, edit the following files: ~/.profile ~/.bashrc Change any PATH variables to the vendor default for root and remove any empty PATH entries or references to relative paths. The root account's executable search path must be the vendor default, and must contain only absolute paths. unknown CM-6(a) NaN NaN NaN Restrict Root Logins
CCE-26971-2 Verify Only Root Has UID 0 verify via id 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. If the account is associated with system commands or applications the UID should be changed to one greater than "0" but less than "1000." Otherwise assign a UID greater than "1000" that has not already been assigned. 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. high AC-6(5),IA-2,IA-4(b) NaN NaN SRG-OS-999999 Restrict Root Logins
CCE-80510-1 Ensure that System Accounts Are Locked -l SYSACCT via passwd Some accounts are not associated with a human user of the system, and exist to perform some administrative function. An attacker should not be able to log into these accounts. System accounts are those user accounts with a user ID less than UID_MIN, where value of the UID_MIN directive is set in /etc/login.defs configuration file. In the default configuration UID_MIN is set to 500, thus system accounts are those user accounts with a user ID less than 500. If any system account SYSACCT (other than root) has an unlocked password, disable it with the command: $ sudo passwd -l SYSACCT Disabling authentication for default system accounts makes it more difficult for attackers to make use of them to compromise a system.false medium AC-6,CM-6(a) NaN NaN SRG-OS-999999 Restrict Root Logins
CCE-26855-7 Restrict Virtual Console Root Logins disable via /etc/securetty To restrict root logins through the (deprecated) virtual console devices, ensure lines of this form do not appear in /etc/securetty: vc/1 vc/2 vc/3 vc/4 Preventing direct root login to virtual console devices helps ensure accountability for actions taken on the system using the root account. medium AC-6,CM-6(a) NaN NaN SRG-OS-000109 Restrict Root Logins
CCE-26795-5 Restrict Web Browser Use for Administrative Accounts restrict via network Enforce policy requiring administrative accounts use web browsers only for local service administration. If a browser vulnerability is exploited while running with administrative privileges, the entire system could be compromised. Specific exceptions for local service administration should be documented in site-defined policy. unknown NaN NaN NaN NaN Restrict Root Logins
CCE-26966-2 Ensure that System Accounts Do Not Run a Shell Upon Login /sbin/nologin via usermod Some accounts are not associated with a human user of the system, and exist to perform some administrative function. Should an attacker be able to log into these accounts, they should not be granted access to a shell. The login shell for each local account is stored in the last field of each line in /etc/passwd. System accounts are those user accounts with a user ID less than UID_MIN, where value of UID_MIN directive is set in /etc/login.defs configuration file. In the default configuration UID_MIN is set to 1000, thus system accounts are those user accounts with a user ID less than 1000. The user ID is stored in the third field. If any system account SYSACCT (other than root) has a login shell, disable it with the command: $ sudo usermod -s /sbin/nologin SYSACCT Ensuring shells are not given to system accounts upon login makes it more difficult for attackers to make use of system accounts. medium AC-6,CM-6(a) NaN 5.4.2 NaN Restrict Root Logins
CCE-27609-7 Ensure All Accounts on the System Have Unique Names verify via getent Ensure accounts on the system have unique names. To ensure all accounts have unique names, run the following command: $ sudo getent passwd | awk -F: '{ print $1}' | uniq -d If a username is returned, change or delete the username. Unique usernames allow for accountability on the system. medium NaN NaN NaN SRG-OS-000121 Set Account Expiration Parameters
CCE-27474-6 Assign Expiration Date to Temporary Accounts -E YYYY-MM-DD USER via chage Temporary accounts are established as part of normal account activation procedures when there is a need for short-term accounts. In the event temporary or emergency accounts are required, configure the system to terminate them after a documented time period. For every temporary and emergency account, run the following command to set an expiration date on it, substituting USER and YYYY-MM-DD appropriately: $ sudo chage -E YYYY-MM-DD USER YYYY-MM-DD indicates the documented expiration date for the account. For U.S. Government systems, the operating system must be configured to automatically terminate these types of accounts after a period of 72 hours. If temporary user accounts remain active when no longer needed or for an excessive period, these accounts may be used to gain unauthorized access. To mitigate this risk, automated termination of all temporary accounts must be set upon account creation. unknown AC-2(2),AC-2(3),CM-6(a) NaN NaN SRG-OS-000121,SRG-OS-000123 Set Account Expiration Parameters
CCE-80509-3 Use Centralized and Automated Authentication verify via sssdctl Implement an automated system for managing user accounts that minimizes the risk of errors, either intentional or deliberate. This system should integrate with an existing enterprise user management system, such as one based on Identity Management tools such as Active Directory, Kerberos, Directory Server, etc. A comprehensive account management process that includes automation helps to ensure the accounts designated as requiring attention are consistently and promptly addressed. Enterprise environments make user account management challenging and complex. A user management process requiring administrators to manually address account management functions adds risk of potential oversight. medium NaN NaN NaN SRG-OS-000001 Set Account Expiration Parameters
CCE-27283-1 Set Account Expiration Following Inactivity INACTIVE=35 via /etc/default/useradd 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 /etc/default/useradd, substituting NUM_DAYS appropriately: INACTIVE= A value of 35 is recommended; however, this profile expects that the value is set to . 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 useradd man page for more information. Determining the inactivity timeout must be done with careful consideration of the length of a "normal" 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. Disabling inactive accounts ensures that accounts which may not have been responsibly removed are not available to attackers who may have compromised their credentials. medium AC-2(3),CM-6(a),IA-4(e) NaN NaN SRG-OS-000118 Set Account Expiration Parameters
CCE-26476-2 Verify All Account Password Hashes are Shadowed x or * via /etc/passwd If any password hashes are stored in /etc/passwd (in the second field, instead of an x or *), 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. The hashes for all user account passwords should be stored in the file /etc/shadow and never in /etc/passwd, which is readable by all users. medium CM-6(a),IA-5(h) NaN NaN SRG-OS-999999 Verify Proper Storage and Existence of Password Hashes
CCE-27225-2 Verify No netrc Files Exist Remove via rm The .netrc files contain login information used to auto-login into FTP servers and reside in the user'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 .netrc files should be removed. Unencrypted passwords for remote FTP servers may be stored in .netrc files. medium CM-6(a),IA-5(1)(c),IA-5(7),IA-5(h) NaN NaN SRG-OS-000073 Verify Proper Storage and Existence of Password Hashes
CCE-27038-9 Prevent Login to Accounts With Empty Password remove nullock via system-auth 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 nullok option in /etc/pam.d/system-auth to prevent logins with empty passwords. 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. high CM-6(a),IA-5(1)(a),IA-5(c) FIA_UAU.1 NaN SRG-OS-999999 Verify Proper Storage and Existence of Password Hashes
CCE-27379-7 All GIDs referenced in /etc/passwd must be defined in /etc/group verify via /etc/passwd and /etc/group Add a group to the system for each GID referenced without a corresponding group. If a user is assigned the Group Identifier (GID) of a group not existing on the system, and a group with the Gruop Identifier (GID) is subsequently created, the user may have unintended rights to any files associated with the group. low CM-6(a),IA-2 NaN NaN SRG-OS-000104-GPOS-00051 Verify Proper Storage and Existence of Password Hashes
CCE-27002-5 Set Password Minimum Length in login.defs 15 via login.defs To specify password length requirements for new accounts, edit the file /etc/login.defs and add or correct the following line: PASS_MIN_LEN The DoD requirement is 15. The FISMA requirement is 12. The profile requirement is . If a program consults /etc/login.defs and also another PAM module (such as pam_pwquality) during a password change operation, then the most restrictive must be satisfied. See PAM section for more information about enforcing password quality requirements. 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. medium CM-6(a),IA-5(1)(a),IA-5(f) FMT_MOF_EXT.1 NaN SRG-OS-000078 Set Password Expiration Parameters
CCE-26988-6 Set Password Warning Age 7 via login.defs To specify how many days prior to password expiration that a warning will be issued to users, edit the file /etc/login.defs and add or correct the following line: PASS_WARN_AGE The DoD requirement is 7. The profile requirement is . Setting the password warning age enables users to make the change at a practical time. medium CM-6(a),IA-5(1)(d),IA-5(f) NaN NaN SRG-OS-999999 Set Password Expiration Parameters
CCE-26985-2 Set Password Maximum Age 60 via login.defs To specify password maximum age for new accounts, edit the file /etc/login.defs and add or correct the following line: PASS_MAX_DAYS A value of 180 days is sufficient for many environments. The DoD requirement is 60. The profile requirement is . Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If the operating system does not limit the lifetime of passwords and force users to change their passwords, there is the risk that the operating system passwords could be compromised. Setting the password maximum age ensures users are required to periodically change their passwords. Requiring shorter password lifetimes increases the risk of users writing down the password in a convenient location subject to physical compromise. medium CM-6(a),IA-5(1)(d),IA-5(f) NaN NaN SRG-OS-000076 Set Password Expiration Parameters
CCE-27013-2 Set Password Minimum Age 1 via login.defs To specify password minimum age for new accounts, edit the file /etc/login.defs and add or correct the following line: PASS_MIN_DAYS A value of 1 day is considered sufficient for many environments. The DoD requirement is 1. The profile requirement is . Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, then the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse. Setting the minimum password age protects against users cycling back to a favorite password after satisfying the password reuse requirement. medium CM-6(a),IA-5(1)(d),IA-5(f) NaN NaN SRG-OS-000075 Set Password Expiration Parameters
CCE-26974-6 Modify the System Login Banner Configure text via /etc/issue To configure the system login banner edit /etc/issue. Replace the default text with a message compliant with the local site policy or a legal disclaimer. The DoD required text is either: 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: -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. -At any time, the USG may inspect and seize data stored on this IS. -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. -This IS includes security measures (e.g., authentication and access controls) to protect USG interests -- not for your personal benefit or privacy. -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. OR: I've read & consent to terms in IS user agreem't. Display of a standardized and approved use notification before granting access to the operating system ensures privacy and security notification verbiage used is consistent with applicable federal laws, Executive Orders, directives, policies, regulations, standards, and guidance. System use notifications are required only for access via login interfaces with human users and are not required when such human interfaces do not exist. medium AC-8(c) FMT_MOF_EXT.1 NaN SRG-OS-000228 Warning Banners for System Accesses
CCE-27195-7 Enable GUI Warning Banner enable via gconftool-2 To enable displaying a login warning banner in the GNOME Display Manager's login screen, run the following command: $ sudo gconftool-2 --direct \ --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory \ --type bool \ --set /apps/gdm/simple-greeter/banner_message_enable true To display a banner, this setting must be enabled and then banner text must also be set. An appropriate warning message reinforces policy awareness during the login process and facilitates possible legal action against attackers. medium AC-8(a),AC-8(b),AC-8(c) NaN NaN SRG-OS-000024 Implement a GUI Warning Banner
CCE-27017-3 Set GUI Warning Banner Text Configure text via gconftool-2 To set the text shown by the GNOME Display Manager in the login screen, run the following command: $ sudo gconftool-2 --direct \ --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory \ --type string \ --set /apps/gdm/simple-greeter/banner_message_text \ "Text of the warning banner here" When entering a warning banner that spans several lines, remember to begin and end the string with ". This command writes directly either to the /etc/gconf/gconf.xml.mandatory/%gconf-tree.xml if it exists or to the file /etc/gconf/gconf.xml.mandatory/apps/gdm/simple-greeter/%gconf.xml. Either of these files can later be edited directly if necessary. An appropriate warning message reinforces policy awareness during the login process and facilitates possible legal action against attackers. medium AC-8(a),AC-8(c) NaN NaN SRG-OS-000228 Implement a GUI Warning Banner
CCE-82955-6 Install audispd-plugins Package install via yum The audispd-plugins package can be installed with the following command: $ sudo yum install audispd-plugins audispd-plugins provides plugins for the real-time interface to the audit subsystem, audispd. These plugins can do things like relay events to remote machines or analyze events for suspicious behavior. medium NaN NaN NaN SRG-OS-000342-GPOS-00133 System Accounting with auditd
CCE-81041-6 Ensure the audit Subsystem is Installed install via yum The audit package should be installed. The auditd service is an access monitoring and accounting daemon, watching system calls to audit any access, in comparison with potential local access control policy such as SELinux policy. medium AC-7(a),AU-12(2),AU-14,AU-2(a),AU-7(1),AU-7(2),CM-6(a) NaN NaN SRG-OS-000122-GPOS-00063,SRG-OS-000480-GPOS-00227 System Accounting with auditd
CCE-27058-7 Enable auditd Service enable via chkconfig The auditd service is an essential userspace component of the Linux Auditing System, as it is responsible for writing audit records to disk. The auditd service can be enabled with the following command: $ sudo chkconfig --level 2345 auditd on Without establishing what type of events occurred, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack. Ensuring the auditd service is active ensures audit records generated by the kernel are appropriately recorded. Additionally, a properly configured audit subsystem ensures that actions of individual system users can be uniquely traced to those users so they can be held accountable for their actions. high AC-2(g),AC-6(9),AU-10,AU-12(c),AU-14(1),AU-2(d),AU-3,CM-6(a) NaN NaN SRG-OS-000032,SRG-OS-000037,SRG-OS-000255 System Accounting with auditd
CCE-26785-6 Enable Auditing for Processes Which Start Prior to the Audit Daemon audit=1 via grub.conf To ensure all processes can be audited, even those which start prior to the audit daemon, add the argument audit=1 to the kernel line in /etc/grub.conf, in the manner below: kernel /vmlinuz-version ro vga=ext root=/dev/VolGroup00/LogVol00 rhgb quiet audit=1 Each process on the system carries an "auditable" flag which indicates whether its activities can be audited. Although auditd 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. low AC-17(1),AU-10,AU-14(1),CM-6(a),IR-5(1) NaN NaN SRG-OS-000062 System Accounting with auditd
CCE-81073-9 Record Events that Modify User/Group Information - /etc/passwd audit enabled via /etc/audit/audit.rules or auditctl If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d, in order to capture events that modify account changes: -w /etc/passwd -p wa -k audit_rules_usergroup_modification If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file, in order to capture events that modify account changes: -w /etc/passwd -p wa -k audit_rules_usergroup_modification 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. medium AC-2(4),AC-6(9),AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c 5.2.5 SRG-OS-000004-GPOS-00004,SRG-OS-000239-GPOS-00089,SRG-OS-000240-GPOS-00090,SRG-OS-000241-GPOS-00091,SRG-OS-000274-GPOS-00104,SRG-OS-000275-GPOS-00105,SRG-OS-000276-GPOS-00106,SRG-OS-000277-GPOS-00107,SRG-OS-000303-GPOS-00120,SRG-OS-000476-GPOS-00221 Configure auditd Rules for Comprehensive Auditing
CCE-26662-7 Ensure auditd Collects System Administrator Actions audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect administrator actions for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following line to a file with suffix .rules in the directory /etc/audit/rules.d: -w /etc/sudoers -p wa -k actions -w /etc/sudoers.d/ -p wa -k actions If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following line to /etc/audit/audit.rules file: -w /etc/sudoers -p wa -k actions -w /etc/sudoers.d/ -p wa -k actions 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. medium AC-3(10) FAU_GEN.1.1.c NaN SRG-OS-000064 Configure auditd Rules for Comprehensive Auditing
CCE-80502-8 System Audit Logs Must Have Mode 0750 or Less Permissive 750 via chmod If log_group in /etc/audit/auditd.conf is set to a group other than the root group account, change the mode of the audit log files with the following command: $ sudo chmod 0750 /var/log/audit Otherwise, change the mode of the audit log files with the following command: $ sudo chmod 0700 /var/log/audit If users can write to audit logs, audit trails can be modified or destroyed. unknown AC-6(1),AU-9,CM-6(a) NaN NaN SRG-OS-000059 Configure auditd Rules for Comprehensive Auditing
CCE-81076-2 Record Events that Modify User/Group Information - /etc/shadow audit enabled via /etc/audit/audit.rules or auditctl If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d, in order to capture events that modify account changes: -w /etc/shadow -p wa -k audit_rules_usergroup_modification If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file, in order to capture events that modify account changes: -w /etc/shadow -p wa -k audit_rules_usergroup_modification 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. medium AC-2(4),AC-6(9),AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c 5.2.5 SRG-OS-000004-GPOS-00004 Configure auditd Rules for Comprehensive Auditing
CCE-26664-3 Record Events that Modify User/Group Information audit enabled via /etc/audit/audit.rules or auditctl If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d, in order to capture events that modify account changes: -w /etc/group -p wa -k audit_rules_usergroup_modification -w /etc/passwd -p wa -k audit_rules_usergroup_modification -w /etc/gshadow -p wa -k audit_rules_usergroup_modification -w /etc/shadow -p wa -k audit_rules_usergroup_modification -w /etc/security/opasswd -p wa -k audit_rules_usergroup_modification If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file, in order to capture events that modify account changes: -w /etc/group -p wa -k audit_rules_usergroup_modification -w /etc/passwd -p wa -k audit_rules_usergroup_modification -w /etc/gshadow -p wa -k audit_rules_usergroup_modification -w /etc/shadow -p wa -k audit_rules_usergroup_modification -w /etc/security/opasswd -p wa -k audit_rules_usergroup_modification 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. medium AC-3(10) NaN 5.2.5 SRG-OS-000004,SRG-OS-000239,SRG-OS-000240,SRG-OS-000241 Configure auditd Rules for Comprehensive Auditing
CCE-26657-7 Record Events that Modify the System's Mandatory Access Controls audit enabled via /etc/audit/audit.rules or auditctl If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following line to a file with suffix .rules in the directory /etc/audit/rules.d: -w /etc/selinux/ -p wa -k MAC-policy If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following line to /etc/audit/audit.rules file: -w /etc/selinux/ -p wa -k MAC-policy The system's mandatory access policy (SELinux) should not be arbitrarily changed by anything other than administrator action. All changes to MAC policy should be audited. medium AC-3(10) FAU_GEN.1.1.c NaN SRG-OS-999999 Configure auditd Rules for Comprehensive Auditing
CCE-26610-6 Record Attempts to Alter Process and Session Initiation Information audit enabled via /etc/audit/audit.rules or auditctl The audit system already collects process information for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d in order to watch for attempted manual edits of files involved in storing such process information: -w /var/run/utmp -p wa -k session -w /var/log/btmp -p wa -k session -w /var/log/wtmp -p wa -k session If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file in order to watch for attempted manual edits of files involved in storing such process information: -w /var/run/utmp -p wa -k session -w /var/log/btmp -p wa -k session -w /var/log/wtmp -p wa -k session Manual editing of these files may indicate nefarious activity, such as an attacker attempting to remove evidence of an intrusion. medium AC-3(10) FAU_GEN.1.1.c NaN NaN Configure auditd Rules for Comprehensive Auditing
CCE-26612-2 Make the auditd Configuration Immutable audit enabled via /etc/audit/audit.rules or auditctl If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following line to a file with suffix .rules in the directory /etc/audit/rules.d in order to make the auditd configuration immutable: -e 2 If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following line to /etc/audit/audit.rules file in order to make the auditd configuration immutable: -e 2 With this setting, a reboot will be required to change any audit rules. Making the audit configuration immutable prevents accidental as well as malicious modification of the audit rules, although it may be problematic if legitimate changes are needed during system operation medium AC-6(9),CM-6(a) NaN 4.1.18 NaN Configure auditd Rules for Comprehensive Auditing
CCE-26573-6 Ensure auditd Collects Information on Exporting to Media (successful) audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect media exportation events for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following line to a file with suffix .rules in the directory /etc/audit/rules.d, setting ARCH to either b32 or b64 as appropriate for your system: -a always,exit -F arch=ARCH -S mount -F auid>=500 -F auid!=unset -F key=export If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following line to /etc/audit/audit.rules file, setting ARCH to either b32 or b64 as appropriate for your system: -a always,exit -F arch=ARCH -S mount -F auid>=500 -F auid!=unset -F key=export 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. medium AC-3(10) NaN 5.2.13 SRG-OS-000064 Configure auditd Rules for Comprehensive Auditing
CCE-81075-4 Record Events that Modify User/Group Information - /etc/gshadow audit enabled via /etc/audit/audit.rules or auditctl If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d, in order to capture events that modify account changes: -w /etc/gshadow -p wa -k audit_rules_usergroup_modification If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file, in order to capture events that modify account changes: -w /etc/gshadow -p wa -k audit_rules_usergroup_modification 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. medium AC-2(4),AC-6(9),AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c 5.2.5 SRG-OS-000004-GPOS-00004 Configure auditd Rules for Comprehensive Auditing
CCE-82070-4 Record Access Events to Audit Log Directory audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect access events to read audit log directory. The following audit rule will assure that access to audit log directory are collected. -a always,exit -F dir=/var/log/audit/ -F perm=r -F auid>=500 -F auid!=unset -F key=access-audit-trail If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the rule to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the rule to /etc/audit/audit.rules file. Attempts to read the logs should be recorded, suspicious access to audit log files could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise.' medium AC-6(9),AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c NaN NaN Configure auditd Rules for Comprehensive Auditing
CCE-81074-7 Record Events that Modify User/Group Information - /etc/group audit enabled via /etc/audit/audit.rules or auditctl If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d, in order to capture events that modify account changes: -w /etc/group -p wa -k audit_rules_usergroup_modification If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file, in order to capture events that modify account changes: -w /etc/group -p wa -k audit_rules_usergroup_modification 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. medium AC-2(4),AC-6(9),AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c 5.2.5 SRG-OS-000004-GPOS-00004 Configure auditd Rules for Comprehensive Auditing
CCE-26648-6 Record Events that Modify the System's Network Environment audit enabled via /etc/audit/audit.rules or auditctl If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d, setting ARCH to either b32 or b64 as appropriate for your system: -a always,exit -F arch=ARCH -S sethostname,setdomainname -F key=audit_rules_networkconfig_modification -w /etc/issue -p wa -k audit_rules_networkconfig_modification -w /etc/issue.net -p wa -k audit_rules_networkconfig_modification -w /etc/hosts -p wa -k audit_rules_networkconfig_modification -w /etc/sysconfig/network -p wa -k audit_rules_networkconfig_modification If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file, setting ARCH to either b32 or b64 as appropriate for your system: -a always,exit -F arch=ARCH -S sethostname,setdomainname -F key=audit_rules_networkconfig_modification -w /etc/issue -p wa -k audit_rules_networkconfig_modification -w /etc/issue.net -p wa -k audit_rules_networkconfig_modification -w /etc/hosts -p wa -k audit_rules_networkconfig_modification -w /etc/sysconfig/network -p wa -k audit_rules_networkconfig_modification The network environment should not be modified by anything other than administrator action. Any change to network parameters should be audited. medium AC-3(10) NaN NaN SRG-OS-999999 Configure auditd Rules for Comprehensive Auditing
CCE-27244-3 System Audit Logs Must Be Owned By Root root via chown All audit logs must be owned by root user and group. By default, the path for audit log is /var/log/audit/. To properly set the owner of /var/log/audit, run the command: $ sudo chown root /var/log/audit To properly set the owner of /var/log/audit/*, run the command: $ sudo chown root /var/log/audit/* Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality. medium AC-6(1),AU-9(4),CM-6(a) NaN NaN SRG-OS-000057 Configure auditd Rules for Comprehensive Auditing
CCE-27243-5 System Audit Logs Must Have Mode 0640 or Less Permissive 600 via chmod If log_group in /etc/audit/auditd.conf is set to a group other than the root group account, change the mode of the audit log files with the following command: $ sudo chmod 0640 audit_file Otherwise, change the mode of the audit log files with the following command: $ sudo chmod 0600 audit_file If users can write to audit logs, audit trails can be modified or destroyed. medium AC-6(1),AU-9(4),CM-6(a) NaN NaN SRG-OS-000058 Configure auditd Rules for Comprehensive Auditing
CCE-27203-9 Record attempts to alter time through settimeofday audit enabled via /etc/audit/audit.rules or auditctl If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following line to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S settimeofday -F key=audit_time_rules If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S settimeofday -F key=audit_time_rules If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following line to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S settimeofday -F key=audit_time_rules If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S settimeofday -F key=audit_time_rules 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: -a always,exit -F arch=b64 -S adjtimex,settimeofday -F key=audit_time_rules 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. medium AC-3(10) NaN NaN SRG-OS-000062 Records Events that Modify Date and Time Information
CCE-26242-8 Record attempts to alter time through adjtimex audit enabled via /etc/audit/audit.rules or auditctl If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following line to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S adjtimex -F key=audit_time_rules If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S adjtimex -F key=audit_time_rules If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following line to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S adjtimex -F key=audit_time_rules If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S adjtimex -F key=audit_time_rules 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: -a always,exit -F arch=b64 -S adjtimex,settimeofday -F key=audit_time_rules 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. medium AC-3(10) NaN NaN SRG-OS-000062 Records Events that Modify Date and Time Information
CCE-27172-6 Record Attempts to Alter the localtime File audit enabled via /etc/audit/audit.rules or auditctl If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following line to a file with suffix .rules in the directory /etc/audit/rules.d: -w /etc/localtime -p wa -k audit_time_rules If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following line to /etc/audit/audit.rules file: -w /etc/localtime -p wa -k audit_time_rules 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. 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. medium AC-3(10),AU-12(c) NaN NaN SRG-OS-000062 Records Events that Modify Date and Time Information
CCE-27170-0 Record Attempts to Alter Time Through clock_settime audit enabled via /etc/audit/audit.rules or auditctl If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following line to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S clock_settime -F a0=0x0 -F key=time-change If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S clock_settime -F a0=0x0 -F key=time-change If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following line to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S clock_settime -F a0=0x0 -F key=time-change If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S clock_settime -F a0=0x0 -F key=time-change 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: -a always,exit -F arch=b64 -S adjtimex,settimeofday -F key=audit_time_rules 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. medium AC-3(10) NaN NaN SRG-OS-000062 Records Events that Modify Date and Time Information
CCE-27169-2 Record Attempts to Alter Time Through stime audit enabled via /etc/audit/audit.rules or auditctl If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following line to a file with suffix .rules in the directory /etc/audit/rules.d for both 32 bit and 64 bit systems: -a always,exit -F arch=b32 -S stime -F key=audit_time_rules Since the 64 bit version of the "stime" system call is not defined in the audit lookup table, the corresponding "-F arch=b64" form of this rule is not expected to be defined on 64 bit systems (the aforementioned "-F arch=b32" stime rule form itself is sufficient for both 32 bit and 64 bit systems). If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following line to /etc/audit/audit.rules file for both 32 bit and 64 bit systems: -a always,exit -F arch=b32 -S stime -F key=audit_time_rules Since the 64 bit version of the "stime" system call is not defined in the audit lookup table, the corresponding "-F arch=b64" form of this rule is not expected to be defined on 64 bit systems (the aforementioned "-F arch=b32" stime rule form itself is sufficient for both 32 bit and 64 bit systems). 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 system calls: -a always,exit -F arch=b64 -S adjtimex,settimeofday -F key=audit_time_rules 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. medium AC-3(10) NaN NaN SRG-OS-000062 Records Events that Modify Date and Time Information
CCE-26651-0 Ensure auditd Collects File Deletion Events by User audit enabled via /etc/audit/audit.rules or auditctl At a minimum the audit system should collect file deletion events for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following line to a file with suffix .rules in the directory /etc/audit/rules.d, setting ARCH to either b32 or b64 as appropriate for your system: -a always,exit -F arch=ARCH -S rmdir,unlink,unlinkat,rename,renameat -F auid>=500 -F auid!=unset -F key=delete If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following line to /etc/audit/audit.rules file, setting ARCH to either b32 or b64 as appropriate for your system: -a always,exit -F arch=ARCH -S rmdir,unlink,unlinkat,rename -S renameat -F auid>=500 -F auid!=unset -F key=delete 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. medium AC-3(10) FAU_GEN.1.1.c 5.2.14 SRG-OS-000064 Record File Deletion Events by User
CCE-81061-4 Ensure auditd Collects Information on the Use of Privileged Commands - crontab audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect the execution of privileged commands for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add a line of the following form to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F path=/usr/bin/crontab -F auid>=500 -F auid!=unset -F key=privileged If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add a line of the following form to /etc/audit/audit.rules: -a always,exit -F path=/usr/bin/crontab -F auid>=500 -F auid!=unset -F key=privileged Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider and advanced persistent threats. 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. medium AC-6(9),AU-12(c),AU-2(d),CM-6(a) NaN NaN SRG-OS-000042-GPOS-00020,SRG-OS-000392-GPOS-00172,SRG-OS-000471-GPOS-00215 Record Information on the Use of Privileged Commands
CCE-81065-5 Ensure auditd Collects Information on the Use of Privileged Commands - newgidmap audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect the execution of privileged commands for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add a line of the following form to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F path=/usr/bin/newgidmap -F auid>=500 -F auid!=unset -F key=privileged If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add a line of the following form to /etc/audit/audit.rules: -a always,exit -F path=/usr/bin/newgidmap -F auid>=500 -F auid!=unset -F key=privileged Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider and advanced persistent threats. 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. medium AC-2(4),AC-6(9),AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c NaN NaN Record Information on the Use of Privileged Commands
CCE-81072-1 Ensure auditd Collects Information on the Use of Privileged Commands - userhelper audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect the execution of privileged commands for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add a line of the following form to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F path=/usr/sbin/userhelper -F auid>=500 -F auid!=unset -F key=privileged If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add a line of the following form to /etc/audit/audit.rules: -a always,exit -F path=/usr/sbin/userhelper -F auid>=500 -F auid!=unset -F key=privileged Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider and advanced persistent threats. 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. medium AC-6(9),AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c NaN SRG-OS-000042-GPOS-00020,SRG-OS-000392-GPOS-00172,SRG-OS-000471-GPOS-00215 Record Information on the Use of Privileged Commands
CCE-26457-2 Ensure auditd Collects Information on the Use of Privileged Commands audit enabled via /etc/audit/audit.rules or auditctl 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, run the following command for each local partition PART: $ sudo find PART -xdev -type f -perm -4000 -o -type f -perm -2000 2>/dev/null If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add a line of the following form to a file with suffix .rules in the directory /etc/audit/rules.d for each setuid / setgid program on the system, replacing the SETUID_PROG_PATH part with the full path of that setuid / setgid program in the list: -a always,exit -F path=SETUID_PROG_PATH -F perm=x -F auid>=500 -F auid!=unset -F key=privileged If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add a line of the following form to /etc/audit/audit.rules for each setuid / setgid program on the system, replacing the SETUID_PROG_PATH part with the full path of that setuid / setgid program in the list: -a always,exit -F path=SETUID_PROG_PATH -F perm=x -F auid>=500 -F auid!=unset -F key=privileged Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider and advanced persistent threats. 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. medium AC-3(10) NaN 5.2.10 SRG-OS-000020 Record Information on the Use of Privileged Commands
CCE-81071-3 Ensure auditd Collects Information on the Use of Privileged Commands - unix_chkpwd audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect the execution of privileged commands for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add a line of the following form to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F path=/usr/sbin/unix_chkpwd -F auid>=500 -F auid!=unset -F key=privileged If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add a line of the following form to /etc/audit/audit.rules: -a always,exit -F path=/usr/sbin/unix_chkpwd -F auid>=500 -F auid!=unset -F key=privileged Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider and advanced persistent threats. 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. medium AC-2(4),AC-6(9),AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c NaN SRG-OS-000042-GPOS-00020,SRG-OS-000392-GPOS-00172,SRG-OS-000471-GPOS-00215 Record Information on the Use of Privileged Commands
CCE-81062-2 Ensure auditd Collects Information on the Use of Privileged Commands - gpasswd audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect the execution of privileged commands for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add a line of the following form to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F path=/usr/bin/gpasswd -F auid>=500 -F auid!=unset -F key=privileged If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add a line of the following form to /etc/audit/audit.rules: -a always,exit -F path=/usr/bin/gpasswd -F auid>=500 -F auid!=unset -F key=privileged Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider and advanced persistent threats. 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. medium AC-2(4),AC-6(9),AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c NaN SRG-OS-000042-GPOS-00020,SRG-OS-000392-GPOS-00172,SRG-OS-000471-GPOS-00215 Record Information on the Use of Privileged Commands
CCE-81066-3 Ensure auditd Collects Information on the Use of Privileged Commands - passwd audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect the execution of privileged commands for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add a line of the following form to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F path=/usr/bin/passwd -F auid>=500 -F auid!=unset -F key=privileged If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add a line of the following form to /etc/audit/audit.rules: -a always,exit -F path=/usr/bin/passwd -F auid>=500 -F auid!=unset -F key=privileged Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider and advanced persistent threats. 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. medium AC-2(4),AC-6(9),AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c NaN SRG-OS-000042-GPOS-00020,SRG-OS-000392-GPOS-00172,SRG-OS-000471-GPOS-00215 Record Information on the Use of Privileged Commands
CCE-81069-7 Ensure auditd Collects Information on the Use of Privileged Commands - newuidmap audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect the execution of privileged commands for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add a line of the following form to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F path=/usr/bin/newuidmap -F auid>=500 -F auid!=unset -F key=privileged If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add a line of the following form to /etc/audit/audit.rules: -a always,exit -F path=/usr/bin/newuidmap -F auid>=500 -F auid!=unset -F key=privileged Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider and advanced persistent threats. 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. medium AC-2(4),AC-6(9),AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c NaN NaN Record Information on the Use of Privileged Commands
CCE-82073-8 Ensure auditd Collects Information on the Use of Privileged Commands - usernetctl audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect the execution of privileged commands for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add a line of the following form to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F path=/usr/sbin/usernetctl -F auid>=500 -F auid!=unset -F key=privileged If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add a line of the following form to /etc/audit/audit.rules: -a always,exit -F path=/usr/sbin/usernetctl -F auid>=500 -F auid!=unset -F key=privileged Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider and advanced persistent threats. 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. medium AC-2(4),AC-6(9),AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c NaN NaN Record Information on the Use of Privileged Commands
CCE-81068-9 Ensure auditd Collects Information on the Use of Privileged Commands - newgrp audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect the execution of privileged commands for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add a line of the following form to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F path=/usr/bin/newgrp -F auid>=500 -F auid!=unset -F key=privileged If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add a line of the following form to /etc/audit/audit.rules: -a always,exit -F path=/usr/bin/newgrp -F auid>=500 -F auid!=unset -F key=privileged Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider and advanced persistent threats. 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. medium AC-2(4),AC-6(9),AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c NaN SRG-OS-000037-GPOS-00015,SRG-OS-000042-GPOS-00020,SRG-OS-000392-GPOS-00172,SRG-OS-000462-GPOS-00206,SRG-OS-000471-GPOS-00215 Record Information on the Use of Privileged Commands
CCE-81067-1 Ensure auditd Collects Information on the Use of Privileged Commands - umount audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect the execution of privileged commands for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add a line of the following form to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F path=/usr/bin/umount -F auid>=500 -F auid!=unset -F key=privileged If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add a line of the following form to /etc/audit/audit.rules: -a always,exit -F path=/usr/bin/umount -F auid>=500 -F auid!=unset -F key=privileged Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider and advanced persistent threats. 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. medium AC-6(9),AU-12(c),AU-2(d),CM-6(a) NaN NaN SRG-OS-000042-GPOS-00020,SRG-OS-000392-GPOS-00172,SRG-OS-000471-GPOS-00215 Record Information on the Use of Privileged Commands
CCE-81063-0 Ensure auditd Collects Information on the Use of Privileged Commands - mount audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect the execution of privileged commands for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add a line of the following form to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F path=/usr/bin/mount -F auid>=500 -F auid!=unset -F key=privileged If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add a line of the following form to /etc/audit/audit.rules: -a always,exit -F path=/usr/bin/mount -F auid>=500 -F auid!=unset -F key=privileged Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider and advanced persistent threats. 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. medium AC-6(9),AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c NaN SRG-OS-000042-GPOS-00020,SRG-OS-000392-GPOS-00172 Record Information on the Use of Privileged Commands
CCE-82123-1 Record Successful Ownership Changes to Files - lchown audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file ownership changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S lchown -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S lchown -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S lchown -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S lchown -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change File ownership attempts could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-82105-8 Record Successful Permission Changes to Files - setxattr audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file permission changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S setxattr -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S setxattr -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S setxattr -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S setxattr -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change File deletion attempts could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81095-2 Record Unsuccessul Permission Changes to Files - fsetxattr audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect unsuccessful file permission change attempts for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S fsetxattr -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b32 -S fsetxattr -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S fsetxattr -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b64 -S fsetxattr -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change Unsuccessful attempts to change permissions of files could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium AU-12(c),AU-2(d),CM-6(a) NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-82126-4 Record Successful Ownership Changes to Files - fchown audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file ownership changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S fchown -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S fchown -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S fchown -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S fchown -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change File ownership attempts could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81136-4 Record Successful Creation Attempts to Files - openat O_TRUNC_WRITE audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect detailed file access records for all users and root. The openat syscall can be used to modify files if called for write operation with the O_TRUNC_WRITE flag. The following audit rules will assure that successful attempts to create a file via openat syscall are collected. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the rules below to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the rules below to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S openat -F a2&01003 -F success=1 -F auid>=500 -F auid!=unset -F key=successful-modification If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S openat -F a2&01003 -F success=1 -F auid>=500 -F auid!=unset -F key=successful-modification Successful 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. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-26712-0 Ensure auditd Collects Unauthorized Access Attempts to Files (unsuccessful) audit enabled via /etc/audit/audit.rules or auditctl At a minimum the audit system should collect unauthorized file accesses for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S creat,open,openat,open_by_handle_at,truncate,ftruncate -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b32 -S creat,open,openat,open_by_handle_at,truncate,ftruncate -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S creat,open,openat,open_by_handle_at,truncate,ftruncate -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b64 -S creat,open,openat,open_by_handle_at,truncate,ftruncate -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S creat,open,openat,open_by_handle_at,truncate,ftruncate -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b32 -S creat,open,openat,open_by_handle_at,truncate,ftruncate -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S creat,open,openat,open_by_handle_at,truncate,ftruncate -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b64 -S creat,open,openat,open_by_handle_at,truncate,ftruncate -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access 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. medium AC-3(10) NaN 5.2.10 SRG-OS-000064 Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81126-5 Record Successful Creation Attempts to Files - openat O_CREAT audit enabled via /etc/audit/audit.rules or auditctl The openat syscall can be used to create new files when O_CREAT flag is specified. The following audit rules will assure that successful attempts to create a file via openat syscall are collected. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the rules below to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the rules below to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S openat -F a2&0100 -F success=1 -F auid>=500 -F auid!=unset -F key=successful-create If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S openat -F a2&0100 -F success=1 -F auid>=500 -F auid!=unset -F key=successful-create Successful 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. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81124-0 Record Unsuccessful Modification Attempts to Files - open_by_handle_at O_TRUNC_WRITE audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect detailed unauthorized file accesses for all users and root. The open_by_handle_at syscall can be used to modify files if called for write operation of with O_TRUNC_WRITE flag. The following auidt rules will asure that unsuccessful attempts to modify a file via open_by_handle_at syscall are collected. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the rules below to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the rules below to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S open_by_handle_at -F a2&01003 -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-modification -a always,exit -F arch=b32 -S open_by_handle_at -F a2&01003 -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-modification If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S open_by_handle_at -F a2&01003 -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-modification -a always,exit -F arch=b64 -S open_by_handle_at -F a2&01003 -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-modification 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. medium AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064-GPOS-00033,SRG-OS-000392-GPOS-00172,SRG-OS-000458-GPOS-00203,SRG-OS-000461-GPOS-00205 Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-82007-6 Record Successful Access Attempts to Files - openat audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect unauthorized file accesses for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S openat -F success=1 -F auid>=500 -F auid!=unset -F key=successful-access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S openat -F success=1 -F auid>=500 -F auid!=unset -F key=successful-access If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S openat -F success=1 -F auid>=500 -F auid!=unset -F key=successful-access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S openat -F success=1 -F auid>=500 -F auid!=unset -F key=successful-access File access attempts could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-82083-7 Record Unsuccessful Creation Attempts to Files - openat O_CREAT audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect unauthorized file accesses for all users and root. The openat syscall can be used to create new files when O_CREAT flag is specified. The following auidt rules will asure that unsuccessful attempts to create a file via openat syscall are collected. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the rules below to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the rules below to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S openat -F a2&0100 -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-create -a always,exit -F arch=b32 -S openat -F a2&0100 -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-create If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S openat -F a2&0100 -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-create -a always,exit -F arch=b64 -S openat -F a2&0100 -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-create 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. medium AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064-GPOS-00033,SRG-OS-000392-GPOS-00172,SRG-OS-000458-GPOS-00203,SRG-OS-000461-GPOS-00205 Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81091-1 Record Unsuccessul Permission Changes to Files - setxattr audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect unsuccessful file permission change attempts for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S setxattr -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b32 -S setxattr -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S setxattr -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b64 -S setxattr -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change Unsuccessful attempts to change permissions of files could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium AU-12(c),AU-2(d),CM-6(a) NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81107-5 Record Unsuccessul Delete Attempts to Files - rename audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect unsuccessful file deletion attempts for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S rename -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccessful-delete -a always,exit -F arch=b32 -S rename -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccessful-delete If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S rename -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccessful-delete -a always,exit -F arch=b64 -S rename -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccessful-delete Unsuccessful attempts to delete files could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064-GPOS-00033,SRG-OS-000392-GPOS-00172,SRG-OS-000458-GPOS-00203,SRG-OS-000461-GPOS-00205 Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-82129-8 Record Successful Ownership Changes to Files - chown audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file ownership changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S chown -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S chown -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S chown -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S chown -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change File ownership attempts could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81101-8 Record Unsuccessul Permission Changes to Files - fremovexattr audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect unsuccessful file permission change attempts for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S fremovexattr -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b32 -S fremovexattr -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S fremovexattr -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b64 -S fremovexattr -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change Unsuccessful attempts to change permissions of files could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium AU-12(c),AU-2(d),CM-6(a) NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81120-8 Record Unsuccessful Modification Attempts to Files - open O_TRUNC_WRITE audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect detailed unauthorized file accesses for all users and root. The open syscall can be used to modify files if called for write operation of with O_TRUNC_WRITE flag. The following auidt rules will asure that unsuccessful attempts to modify a file via open syscall are collected. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the rules below to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the rules below to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S open -F a1&01003 -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-modification -a always,exit -F arch=b32 -S open -F a1&01003 -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-modification If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S open -F a1&01003 -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-modification -a always,exit -F arch=b64 -S open -F a1&01003 -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-modification 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. medium AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064-GPOS-00033,SRG-OS-000392-GPOS-00172,SRG-OS-000458-GPOS-00203,SRG-OS-000461-GPOS-00205 Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81113-3 Record Unsuccessful Access Attempts to Files - openat audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect unauthorized file accesses for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S openat -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b32 -S openat -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S openat -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b64 -S openat -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S openat -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b32 -S openat -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S openat -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b64 -S openat -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access 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. medium AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064-GPOS-00033,SRG-OS-000392-GPOS-00172,SRG-OS-000458-GPOS-00203,SRG-OS-000461-GPOS-00205 Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81109-1 Record Unsuccessful Access Attempts to Files - open audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect unauthorized file accesses for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S open -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b32 -S open -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S open -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b64 -S open -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S open -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b32 -S open -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S open -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b64 -S open -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access 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. medium AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064-GPOS-00033,SRG-OS-000392-GPOS-00172,SRG-OS-000458-GPOS-00203,SRG-OS-000461-GPOS-00205 Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81112-5 Record Unsuccessful Access Attempts to Files - ftruncate audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect unauthorized file accesses for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S ftruncate -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b32 -S ftruncate -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S ftruncate -F exiu=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b64 -S ftruncate -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S ftruncate -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b32 -S ftruncate -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S ftruncate -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b64 -S ftruncate -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access 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. medium AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064-GPOS-00033,SRG-OS-000392-GPOS-00172,SRG-OS-000458-GPOS-00203,SRG-OS-000461-GPOS-00205 Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81111-7 Record Unsuccessful Access Attempts to Files - truncate audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect unauthorized file accesses for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S truncate -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b32 -S truncate -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S truncate -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b64 -S truncate -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S truncate -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b32 -S truncate -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S truncate -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b64 -S truncate -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access 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. medium AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064-GPOS-00033,SRG-OS-000392-GPOS-00172,SRG-OS-000458-GPOS-00203,SRG-OS-000461-GPOS-00205 Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-82120-7 Record Successful Permission Changes to Files - fremovexattr audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file permission changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S fremovexattr -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S fremovexattr -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S fremovexattr -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S fremovexattr -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change File permission changes could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-82003-5 Record Successful Access Attempts to Files - ftruncate audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect unauthorized file accesses for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S ftruncate -F success=1 -F auid>=500 -F auid!=unset -F key=successful-access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S ftruncate -F success=1 -F auid>=500 -F auid!=unset -F key=successful-access If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S ftruncate -F success=1 -F auid>=500 -F auid!=unset -F key=successful-access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S ftruncate -F success=1 -F auid>=500 -F auid!=unset -F key=successful-access File access attempts could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-82081-1 Record Unsuccessul Delete Attempts to Files - renameat audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect unsuccessful file deletion attempts for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S renameat -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccessful-delete -a always,exit -F arch=b32 -S renameat -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccessful-delete If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S renameat -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccessful-delete -a always,exit -F arch=b64 -S renameat -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccessful-delete Unsuccessful attempts to delete files could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064-GPOS-00033,SRG-OS-000392-GPOS-00172,SRG-OS-000458-GPOS-00203,SRG-OS-000461-GPOS-00205 Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81122-4 Record Unsuccessful Modification Attempts to Files - openat O_TRUNC_WRITE audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect detailed unauthorized file accesses for all users and root. The openat syscall can be used to modify files if called for write operation of with O_TRUNC_WRITE flag. The following auidt rules will asure that unsuccessful attempts to modify a file via openat syscall are collected. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the rules below to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the rules below to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S openat -F a2&01003 -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-modification -a always,exit -F arch=b32 -S openat -F a2&01003 -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-modification If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S openat -F a2&01003 -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-modification -a always,exit -F arch=b64 -S openat -F a2&01003 -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-modification 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. medium AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064-GPOS-00033,SRG-OS-000392-GPOS-00172,SRG-OS-000458-GPOS-00203,SRG-OS-000461-GPOS-00205 Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81133-1 Record Successful Creation Attempts to Files - open O_CREAT audit enabled via /etc/audit/audit.rules or auditctl The open syscall can be used to create new files when O_CREAT flag is specified. The following audit rules will assure that successful attempts to create a file via open syscall are collected. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the rules below to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the rules below to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S open -F a2&0100 -F success=1 -F auid>=500 -F auid!=unset -F key=successful-create If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S open -F a2&0100 -F success=1 -F auid>=500 -F auid!=unset -F key=successful-create Successful 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. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81079-6 Record Unsuccessul Ownership Changes to Files - fchown audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect unsuccessful file ownership change attempts for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S fchown -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b32 -S fchown -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S fchown -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b64 -S fchown -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change Unsuccessful attempts to change ownership of files could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium AU-12(c),AU-2(d),CM-6(a) NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81129-9 Record Successful Creation Attempts to Files - open_by_handle_at O_CREAT audit enabled via /etc/audit/audit.rules or auditctl The open_by_handle_at syscall can be used to create new files when O_CREAT flag is specified. The following audit rules will assure that successful attempts to create a file via open_by_handle_at syscall are collected. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the rules below to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the rules below to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S open_by_handle_at -F a2&0100 -F success=1 -F auid>=500 -F auid!=unset -F key=successful-create If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S open_by_handle_at -F a2&0100 -F success=1 -F auid>=500 -F auid!=unset -F key=successful-create Successful 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. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81077-0 Record Unsuccessul Ownership Changes to Files - lchown audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect unsuccessful file ownership change attempts for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S lchown -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b32 -S lchown -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S lchown -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b64 -S lchown -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change Unsuccessful attempts to change ownership of files could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium AU-12(c),AU-2(d),CM-6(a) NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81097-8 Record Unsuccessul Permission Changes to Files - removexattr audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect unsuccessful file permission change attempts for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S removexattr -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b32 -S removexattr -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S removexattr -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b64 -S removexattr -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change Unsuccessful attempts to change permissions of files could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium AU-12(c),AU-2(d),CM-6(a) NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-82099-3 Record Successful Permission Changes to Files - fchmod audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file permission changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S fchmod -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S fchmod -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S fchmod -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S fchmod -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change File permission changes could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81116-6 Record Unsuccessful Creation Attempts to Files - open_by_handle_at O_CREAT audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect unauthorized file accesses for all users and root. The open_by_handle_at syscall can be used to create new files when O_CREAT flag is specified. The following auidt rules will asure that unsuccessful attempts to create a file via open_by_handle_at syscall are collected. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the rules below to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the rules below to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S open_by_handle_at -F a2&0100 -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-create -a always,exit -F arch=b32 -S open_by_handle_at -F a2&0100 -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-create If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S open_by_handle_at -F a2&0100 -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-create -a always,exit -F arch=b64 -S open_by_handle_at -F a2&0100 -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-create 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. medium AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064-GPOS-00033,SRG-OS-000392-GPOS-00172,SRG-OS-000458-GPOS-00203,SRG-OS-000461-GPOS-00205 Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-82087-8 Record Successful Delete Attempts to Files - unlinkat audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file deletion for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S unlinkat -F success=1 -F auid>=500 -F auid!=unset -F key=successful-delete If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S unlinkat -F success=1 -F auid>=500 -F auid!=unset -F key=successful-delete If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S unlinkat -F success=1 -F auid>=500 -F auid!=unset -F key=successful-delete If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S unlinkat -F success=1 -F auid>=500 -F auid!=unset -F key=successful-delete File deletion attempts could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81103-4 Record Unsuccessul Delete Attempts to Files - unlinkat audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect unsuccessful file deletion attempts for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S unlinkat -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccessful-delete -a always,exit -F arch=b32 -S unlinkat -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccessful-delete If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S unlinkat -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccessful-delete -a always,exit -F arch=b64 -S unlinkat -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccessful-delete Unsuccessful attempts to delete files could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064-GPOS-00033,SRG-OS-000392-GPOS-00172,SRG-OS-000458-GPOS-00203,SRG-OS-000461-GPOS-00205 Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-82102-5 Record Successful Permission Changes to Files - fchmodat audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file permission changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S fchmodat -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S fchmodat -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S fchmodat -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S fchmodat -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change File permission changes could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81083-8 Record Unsuccessul Ownership Changes to Files - fchownat audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect unsuccessful file ownership change attempts for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S fchownat -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b32 -S fchownat -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S fchownat -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b64 -S fchownat -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change Unsuccessful attempts to change ownership of files could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium AU-12(c),AU-2(d),CM-6(a) NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81151-3 Record Successful Access Attempts to Files - truncate audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect unauthorized file accesses for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S truncate -F success=1 -F auid>=500 -F auid!=unset -F key=successful-access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S truncate -F success=1 -F auid>=500 -F auid!=unset -F key=successful-access If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S truncate -F success=1 -F auid>=500 -F auid!=unset -F key=successful-access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S truncate -F success=1 -F auid>=500 -F auid!=unset -F key=successful-access File access attempts could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81105-9 Record Unsuccessul Delete Attempts to Files - unlink audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect unsuccessful file deletion attempts for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S unlink -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccessful-delete -a always,exit -F arch=b32 -S unlink -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccessful-delete If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S unlink -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccessful-delete -a always,exit -F arch=b64 -S unlink -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccessful-delete Unsuccessful attempts to delete files could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064-GPOS-00033,SRG-OS-000392-GPOS-00172,SRG-OS-000458-GPOS-00203,SRG-OS-000461-GPOS-00205 Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-82093-6 Record Successful Delete Attempts to Files - renameat audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file deletion for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S renameat -F success=1 -F auid>=500 -F auid!=unset -F key=successful-delete If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S renameat -F success=1 -F auid>=500 -F auid!=unset -F key=successful-delete If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S renameat -F success=1 -F auid>=500 -F auid!=unset -F key=successful-delete If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S renameat -F success=1 -F auid>=500 -F auid!=unset -F key=successful-delete File deletion attempts could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-82108-2 Record Successful Permission Changes to Files - lsetxattr audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file permission changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S lsetxattr -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S lsetxattr -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S lsetxattr -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S lsetxattr -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change File permission changes could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81085-3 Record Unsuccessul Permission Changes to Files - chmod audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect unsuccessful file permission change attempts for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S chmod -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b32 -S chmod -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S chmod -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b64 -S chmod -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change Unsuccessful attempts to change permissions of files could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium AU-12(c),AU-2(d),CM-6(a) NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81089-5 Record Unsuccessul Permission Changes to Files - fchmodat audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect unsuccessful file permission change attempts for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S fchmodat -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b32 -S fchmodat -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S fchmodat -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b64 -S fchmodat -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change Unsuccessful attempts to change permissions of files could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium AU-12(c),AU-2(d),CM-6(a) NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-82090-2 Record Successful Delete Attempts to Files - rename audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file deletion for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S rename -F success=1 -F auid>=500 -F auid!=unset -F key=successful-delete If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S rename -F success=1 -F auid>=500 -F auid!=unset -F key=successful-delete If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S rename -F success=1 -F auid>=500 -F auid!=unset -F key=successful-delete If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S rename -F success=1 -F auid>=500 -F auid!=unset -F key=successful-delete File deletion attempts could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81142-2 Record Successful Creation Attempts to Files - open O_TRUNC_WRITE audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect detailed file access records for all users and root. The open syscall can be used to modify files if called for write operation with the O_TRUNC_WRITE flag. The following audit rules will assure that successful attempts to create a file via open syscall are collected. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the rules below to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the rules below to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S open -F a2&01003 -F success=1 -F auid>=500 -F auid!=unset -F key=successful-modification If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S open -F a2&01003 -F success=1 -F auid>=500 -F auid!=unset -F key=successful-modification Successful 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. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81110-9 Record Unsuccessful Access Attempts to Files - creat audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect unauthorized file accesses for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S creat -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b32 -S creat -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S creat -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b64 -S creat -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S creat -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b32 -S creat -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S creat -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b64 -S creat -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access 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. medium AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064-GPOS-00033,SRG-OS-000392-GPOS-00172,SRG-OS-000458-GPOS-00203,SRG-OS-000461-GPOS-00205 Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81093-7 Record Unsuccessul Permission Changes to Files - lsetxattr audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect unsuccessful file permission change attempts for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S lsetxattr -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b32 -S lsetxattr -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S lsetxattr -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b64 -S lsetxattr -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change Unsuccessful attempts to change permissions of files could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium AU-12(c),AU-2(d),CM-6(a) NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81139-8 Record Successful Creation Attempts to Files - open_by_handle_at O_TRUNC_WRITE audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect detailed file access records for all users and root. The open_by_handle_at syscall can be used to modify files if called for write operation with the O_TRUNC_WRITE flag. The following audit rules will assure that successful attempts to create a file via open_by_handle_at syscall are collected. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the rules below to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the rules below to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S open_by_handle_at -F a2&01003 -F success=1 -F auid>=500 -F auid!=unset -F key=successful-modification If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S open_by_handle_at -F a2&01003 -F success=1 -F auid>=500 -F auid!=unset -F key=successful-modification Successful 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. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81081-2 Record Unsuccessul Ownership Changes to Files - chown audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect unsuccessful file ownership change attempts for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S chown -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b32 -S chown -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S chown -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b64 -S chown -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change Unsuccessful attempts to change ownership of files could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium AU-12(c),AU-2(d),CM-6(a) NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-82096-9 Record Successful Permission Changes to Files - chmod audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file permission changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S chmod -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S chmod -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S chmod -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S chmod -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change File permission changes could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-82132-2 Record Successful Ownership Changes to Files - fchownat audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file ownership changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S fchownat -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S fchownat -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S fchownat -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S fchownat -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change File ownership attempts could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-82084-5 Record Successful Delete Attempts to Files - unlink audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file deletion for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S unlink -F success=1 -F auid>=500 -F auid!=unset -F key=successful-delete If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S unlink -F success=1 -F auid>=500 -F auid!=unset -F key=successful-delete If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S unlink -F success=1 -F auid>=500 -F auid!=unset -F key=successful-delete If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S unlink -F success=1 -F auid>=500 -F auid!=unset -F key=successful-delete File deletion attempts could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81114-1 Record Unsuccessful Access Attempts to Files - open_by_handle_at audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect unauthorized file accesses for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S open_by_handle_at,truncate,ftruncate -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b32 -S open_by_handle_at,truncate,ftruncate -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S open_by_handle_at,truncate,ftruncate -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=access -a always,exit -F arch=b64 -S open_by_handle_at,truncate,ftruncate -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=access 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. medium AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064-GPOS-00033,SRG-OS-000392-GPOS-00172,SRG-OS-000458-GPOS-00203,SRG-OS-000461-GPOS-00205 Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81118-2 Record Unsuccessful Creation Attempts to Files - open O_CREAT audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect unauthorized file accesses for all users and root. The open syscall can be used to create new files when O_CREAT flag is specified. The following auidt rules will asure that unsuccessful attempts to create a file via open syscall are collected. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the rules below to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the rules below to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S open -F a1&0100 -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-create -a always,exit -F arch=b32 -S open -F a1&0100 -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-create If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S open -F a1&0100 -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-create -a always,exit -F arch=b64 -S open -F a1&0100 -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-create 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. medium AU-12(c),AU-2(d),CM-6(a) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064-GPOS-00033,SRG-OS-000392-GPOS-00172,SRG-OS-000458-GPOS-00203,SRG-OS-000461-GPOS-00205 Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-82114-0 Record Successful Permission Changes to Files - removexattr audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file permission changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S removexattr -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S removexattr -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S removexattr -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S removexattr -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change File permission changes could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-82111-6 Record Successful Permission Changes to Files - fsetxattr audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file permission changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S fsetxattr -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S fsetxattr -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S fsetxattr -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S fsetxattr -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change File permission changes could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-82117-3 Record Successful Permission Changes to Files - lremovexattr audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file permission changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S lremovexattr -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S lremovexattr -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S lremovexattr -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S lremovexattr -F success=1 -F auid>=500 -F auid!=unset -F key=successful-perm-change File permission changes could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-82011-8 Record Successful Access Attempts to Files - open_by_handle_at audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect unauthorized file accesses for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S open_by_handle_at -F success=1 -F auid>=500 -F auid!=unset -F key=successful-access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S open_by_handle_at -F success=1 -F auid>=500 -F auid!=unset -F key=successful-access If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S open_by_handle_at -F success=1 -F auid>=500 -F auid!=unset -F key=successful-access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S open_by_handle_at -F success=1 -F auid>=500 -F auid!=unset -F key=successful-access File access attempts could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81148-9 Record Successful Access Attempts to Files - creat audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect unauthorized file accesses for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S creat -F success=1 -F auid>=500 -F auid!=unset -F key=successful-access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S creat -F success=1 -F auid>=500 -F auid!=unset -F key=successful-access If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S creat -F success=1 -F auid>=500 -F auid!=unset -F key=successful-access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S creat -F success=1 -F auid>=500 -F auid!=unset -F key=successful-access File access attempts could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81099-4 Record Unsuccessul Permission Changes to Files - lremovexattr audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect unsuccessful file permission change attempts for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S lremovexattr -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b32 -S lremovexattr -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S lremovexattr -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b64 -S lremovexattr -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change Unsuccessful attempts to change permissions of files could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium AU-12(c),AU-2(d),CM-6(a) NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81145-5 Record Successful Access Attempts to Files - open audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect unauthorized file accesses for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S open -F success=1 -F auid>=500 -F auid!=unset -F key=successful-access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S open -F success=1 -F auid>=500 -F auid!=unset -F key=successful-access If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S open -F success=1 -F auid>=500 -F auid!=unset -F key=successful-access If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S open -F success=1 -F auid>=500 -F auid!=unset -F key=successful-access File access attempts could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium NaN NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-81087-9 Record Unsuccessul Permission Changes to Files - fchmod audit enabled via /etc/audit/audit.rules or auditctl The audit system should collect unsuccessful file permission change attempts for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file. -a always,exit -F arch=b32 -S fchmod -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b32 -S fchmod -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change If the system is 64 bit then also add the following lines: -a always,exit -F arch=b64 -S fchmod -F exit=-EACCES -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change -a always,exit -F arch=b64 -S fchmod -F exit=-EPERM -F auid>=500 -F auid!=unset -F key=unsuccesful-perm-change Unsuccessful attempts to change permissions of files could be an indicator of malicious activity on a system. Auditing these events could serve as evidence of potential system compromise. medium AU-12(c),AU-2(d),CM-6(a) NaN NaN NaN Record Unauthorized Access Attempts Events to Files (unsuccessful)
CCE-27174-2 Record Events that Modify the System's Discretionary Access Controls - fchmod audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file permission changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following line to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S fchmod -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S fchmod -F auid>=500 -F auid!=unset -F key=perm_mod If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following line to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S fchmod -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S fchmod -F auid>=500 -F auid!=unset -F key=perm_mod 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. medium AC-3(10) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064 Record Events that Modify the System's Discretionary Access Controls
CCE-27178-3 Record Events that Modify the System's Discretionary Access Controls - fchownat audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file permission changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following line to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S fchownat -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S fchownat -F auid>=500 -F auid!=unset -F key=perm_mod If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following line to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S fchownat -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S fchownat -F auid>=500 -F auid!=unset -F key=perm_mod 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. medium AC-3(10) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064 Record Events that Modify the System's Discretionary Access Controls
CCE-27185-8 Record Events that Modify the System's Discretionary Access Controls - setxattr audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file permission changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following line to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S setxattr -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S setxattr -F auid>=500 -F auid!=unset -F key=perm_mod If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following line to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S setxattr -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S setxattr -F auid>=500 -F auid!=unset -F key=perm_mod 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. medium AC-3(10) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064 Record Events that Modify the System's Discretionary Access Controls
CCE-26280-8 Record Events that Modify the System's Discretionary Access Controls - chmod audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file permission changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following line to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S chmod -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S chmod -F auid>=500 -F auid!=unset -F key=perm_mod If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following line to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S chmod -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S chmod -F auid>=500 -F auid!=unset -F key=perm_mod 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. medium AC-3(10) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064 Record Events that Modify the System's Discretionary Access Controls
CCE-27175-9 Record Events that Modify the System's Discretionary Access Controls - fchmodat audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file permission changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following line to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S fchmodat -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S fchmodat -F auid>=500 -F auid!=unset -F key=perm_mod If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following line to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S fchmodat -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S fchmodat -F auid>=500 -F auid!=unset -F key=perm_mod 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. medium AC-3(10) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064 Record Events that Modify the System's Discretionary Access Controls
CCE-27177-5 Record Events that Modify the System's Discretionary Access Controls - fchown audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file permission changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following line to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S fchown -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S fchown -F auid>=500 -F auid!=unset -F key=perm_mod If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following line to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S fchown -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S fchown -F auid>=500 -F auid!=unset -F key=perm_mod 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. medium AC-3(10) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064 Record Events that Modify the System's Discretionary Access Controls
CCE-27184-1 Record Events that Modify the System's Discretionary Access Controls - removexattr audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file permission changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following line to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S removexattr -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S removexattr -F auid>=500 -F auid!=unset -F key=perm_mod If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following line to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S removexattr -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S removexattr -F auid>=500 -F auid!=unset -F key=perm_mod 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. medium AC-3(10) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064 Record Events that Modify the System's Discretionary Access Controls
CCE-27181-7 Record Events that Modify the System's Discretionary Access Controls - lchown audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file permission changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following line to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S lchown -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S lchown -F auid>=500 -F auid!=unset -F key=perm_mod If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following line to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S lchown -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S lchown -F auid>=500 -F auid!=unset -F key=perm_mod 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. medium AC-3(10) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064 Record Events that Modify the System's Discretionary Access Controls
CCE-27173-4 Record Events that Modify the System's Discretionary Access Controls - chown audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file permission changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following line to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S chown -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S chown -F auid>=500 -F auid!=unset -F key=perm_mod If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following line to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S chown -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S chown -F auid>=500 -F auid!=unset -F key=perm_mod 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. medium AC-3(10) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064 Record Events that Modify the System's Discretionary Access Controls
CCE-27179-1 Record Events that Modify the System's Discretionary Access Controls - fremovexattr audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file permission changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following line to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S fremovexattr -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S fremovexattr -F auid>=500 -F auid!=unset -F key=perm_mod If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following line to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S fremovexattr -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S fremovexattr -F auid>=500 -F auid!=unset -F key=perm_mod 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. medium AC-3(10) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064 Record Events that Modify the System's Discretionary Access Controls
CCE-27183-3 Record Events that Modify the System's Discretionary Access Controls - lsetxattr audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file permission changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following line to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S lsetxattr -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S lsetxattr -F auid>=500 -F auid!=unset -F key=perm_mod If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following line to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S lsetxattr -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S lsetxattr -F auid>=500 -F auid!=unset -F key=perm_mod 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. medium AC-3(10) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064 Record Events that Modify the System's Discretionary Access Controls
CCE-27180-9 Record Events that Modify the System's Discretionary Access Controls - fsetxattr audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file permission changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following line to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S fsetxattr -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S fsetxattr -F auid>=500 -F auid!=unset -F key=perm_mod If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following line to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S fsetxattr -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S fsetxattr -F auid>=500 -F auid!=unset -F key=perm_mod 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. medium AC-3(10) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064 Record Events that Modify the System's Discretionary Access Controls
CCE-27182-5 Record Events that Modify the System's Discretionary Access Controls - lremovexattr audit enabled via /etc/audit/audit.rules or auditctl At a minimum, the audit system should collect file permission changes for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following line to a file with suffix .rules in the directory /etc/audit/rules.d: -a always,exit -F arch=b32 -S lremovexattr -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S lremovexattr -F auid>=500 -F auid!=unset -F key=perm_mod If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following line to /etc/audit/audit.rules file: -a always,exit -F arch=b32 -S lremovexattr -F auid>=500 -F auid!=unset -F key=perm_mod If the system is 64 bit then also add the following line: -a always,exit -F arch=b64 -S lremovexattr -F auid>=500 -F auid!=unset -F key=perm_mod 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. medium AC-3(10) FAU_GEN.1.1.c 5.2.10 SRG-OS-000064 Record Events that Modify the System's Discretionary Access Controls
CCE-26611-4 Ensure auditd Collects Information on Kernel Module Loading and Unloading audit enabled via /etc/audit/audit.rules or auditctl To capture kernel module loading and unloading events, use following lines, setting ARCH to either b32 for 32-bit system, or having two lines for both b32 and b64 in case your system is 64-bit: -a always,exit -F arch=ARCH -S init_module,delete_module -F key=modules The place to add the lines depends on a way auditd daemon is configured. If it is configured to use the augenrules program (the default), add the lines to a file with suffix .rules in the directory /etc/audit/rules.d. If the auditd daemon is configured to use the auditctl utility, add the lines to file /etc/audit/audit.rules. 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. medium AC-3(10) NaN 5.2.17 SRG-OS-000064 Record Information on Kernel Modules Loading and Unloading
CCE-26691-6 Record Attempts to Alter Logon and Logout Events audit enabled via /etc/audit/audit.rules or auditctl The audit system already collects login information for all users and root. If the auditd daemon is configured to use the augenrules program to read audit rules during daemon startup (the default), add the following lines to a file with suffix .rules in the directory /etc/audit/rules.d in order to watch for attempted manual edits of files involved in storing logon events: -w /var/log/tallylog -p wa -k logins -w /var/run/faillock -p wa -k logins -w /var/log/lastlog -p wa -k logins If the auditd daemon is configured to use the auditctl utility to read audit rules during daemon startup, add the following lines to /etc/audit/audit.rules file in order to watch for unattempted manual edits of files involved in storing logon events: -w /var/log/tallylog -p wa -k logins -w /var/run/faillock -p wa -k logins -w /var/log/lastlog -p wa -k logins Manual editing of these files may indicate nefarious activity, such as an attacker attempting to remove evidence of an intrusion. medium AC-3(10) NaN NaN NaN Record Attempts to Alter Logon and Logout Events
CCE-80501-0 Configure auditd Disk Error Action on Disk Error single via auditd.conf The auditd service can be configured to take an action when there is a disk error. Edit the file /etc/audit/auditd.conf. Add or modify the following line, substituting ACTION appropriately: disk_error_action = ACTION Set this value to single to cause the system to switch to single-user mode for corrective action. Acceptable values also include syslog, exec, single, and halt. For certain systems, the need for availability outweighs the need to log all actions, and a different setting should be determined. Details regarding all possible values for ACTION are described in the auditd.conf man page. Taking appropriate action in case of disk errors will minimize the possibility of losing audit records. medium AU-5(1),AU-5(2),AU-5(4),AU-5(b),CM-6(a) NaN NaN SRG-OS-999999 Configure auditd Data Retention
CCE-26933-2 Configure auditd to use audispd's syslog plugin enable via auditd.conf To configure the auditd service to use the syslog plug-in of the audispd audit event multiplexor, set the active line in /etc/audisp/plugins.d/syslog.conf to yes. Restart the auditd service: $ sudo service auditd restart The auditd service does not include the ability to send audit records to a centralized server for management directly. It does, however, include a plug-in for audit event multiplexor (audispd) to pass audit records to the local syslog server medium AU-4(1),CM-6(a) FAU_GEN.1.1.c NaN SRG-OS-000043 Configure auditd Data Retention
CCE-27550-3 Configure auditd Max Log File Size 6 via auditd.conf Determine the amount of audit data (in megabytes) which should be retained in each log file. Edit the file /etc/audit/auditd.conf. Add or modify the following line, substituting the correct value of for STOREMB: max_log_file = STOREMB Set the value to 6 (MB) or higher for general-purpose systems. Larger values, of course, support retention of even more audit data. 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. medium AU-11,CM-6(a) NaN NaN SRG-OS-999999 Configure auditd Data Retention
CCE-27239-3 Configure auditd admin_space_left Action on Low Disk Space single via auditd.conf The auditd service can be configured to take an action when disk space is running low but prior to running out of space completely. Edit the file /etc/audit/auditd.conf. Add or modify the following line, substituting ACTION appropriately: admin_space_left_action = ACTION Set this value to single to cause the system to switch to single user mode for corrective action. Acceptable values also include suspend and halt. For certain systems, the need for availability outweighs the need to log all actions, and a different setting should be determined. Details regarding all possible values for ACTION are described in the auditd.conf man page. Administrators should be made aware of an inability to record audit records. If a separate partition or logical volume of adequate size is used, running low on space for audit records should never occur. medium AU-5(1),AU-5(2),AU-5(4),AU-5(b),CM-6(a) NaN NaN SRG-OS-999999 Configure auditd Data Retention
CCE-80500-2 Configure auditd Disk Full Action when Disk Space Is Full single via auditd.conf The auditd service can be configured to take an action when disk space is running low but prior to running out of space completely. Edit the file /etc/audit/auditd.conf. Add or modify the following line, substituting ACTION appropriately: disk_full_action = ACTION Set this value to single to cause the system to switch to single-user mode for corrective action. Acceptable values also include syslog, exec, single, and halt. For certain systems, the need for availability outweighs the need to log all actions, and a different setting should be determined. Details regarding all possible values for ACTION are described in the auditd.conf man page. Taking appropriate action in case of a filled audit storage volume will minimize the possibility of losing audit records. medium AU-5(1),AU-5(2),AU-5(4),AU-5(b),CM-6(a) NaN NaN SRG-OS-000047 Configure auditd Data Retention
CCE-27241-9 Configure auditd mail_acct Action on Low Disk Space single via auditd.conf The auditd service can be configured to send email to a designated account in certain situations. Add or correct the following line in /etc/audit/auditd.conf to ensure that administrators are notified via email for those situations: action_mail_acct = Email sent to the root account is typically aliased to the administrators of the system, who can take appropriate action. medium AU-5(2),AU-5(a),CM-6(a),IA-5(1) NaN NaN SRG-OS-000046 Configure auditd Data Retention
CCE-27237-7 Configure auditd max_log_file_action Upon Reaching Maximum Log Size single via auditd.conf 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 auditd, add or correct the line in /etc/audit/auditd.conf: max_log_file_action = ACTION Possible values for ACTION are described in the auditd.conf man page. These include: syslogsuspendrotatekeep_logs Set the ACTION to rotate to ensure log rotation occurs. This is the default. The setting is case-insensitive. Automatically rotating logs (by setting this to rotate) 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, keep_logs can be employed. medium AU-5(1),AU-5(2),AU-5(4),AU-5(b),CM-6(a) NaN NaN SRG-OS-999999 Configure auditd Data Retention
CCE-80507-7 Configure auditd space_left on Low Disk Space single via auditd.conf The auditd service can be configured to take an action when disk space is running low but prior to running out of space completely. Edit the file /etc/audit/auditd.conf. Add or modify the following line, substituting SIZE_in_MB appropriately: space_left = SIZE_in_MB Set this value to the appropriate size in Megabytes cause the system to notify the user of an issue. Notifying administrators of an impending disk space problem may allow them to take corrective action prior to any disruption. medium AU-5(1),AU-5(2),AU-5(4),AU-5(b),CM-6(a) NaN NaN SRG-OS-000048 Configure auditd Data Retention
CCE-27238-5 Configure auditd space_left Action on Low Disk Space single via auditd.conf The auditd service can be configured to take an action when disk space starts to run low. Edit the file /etc/audit/auditd.conf. Modify the following line, substituting ACTION appropriately: space_left_action = ACTION Possible values for ACTION are described in the auditd.conf man page. These include: syslogemailexecsuspendsinglehalt Set this to email (instead of the default, which is suspend) as it is more likely to get prompt attention. Acceptable values also include suspend, single, and halt. Notifying administrators of an impending disk space problem may allow them to take corrective action prior to any disruption. medium AU-5(1),AU-5(2),AU-5(4),AU-5(b),CM-6(a) NaN NaN SRG-OS-000045 Configure auditd Data Retention
CCE-27522-2 Configure auditd Number of Logs Retained 5 via auditd.conf Determine how many log files auditd should retain when it rotates logs. Edit the file /etc/audit/auditd.conf. Add or modify the following line, substituting NUMLOGS with the correct value of : num_logs = NUMLOGS Set the value to 5 for general-purpose systems. Note that values less than 2 result in no log rotation. 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. medium AU-11,CM-6(a) NaN NaN SRG-OS-999999 Configure auditd Data Retention
CCE-27221-1 Disable Prelinking disable via prelink The prelinking feature changes binaries in an attempt to decrease their startup time. In order to disable it, change or add the following line inside the file /etc/sysconfig/prelink: PRELINKING=no Next, run the following command to return binaries to a normal, non-prelinked state: $ sudo /usr/sbin/prelink -ua Because the prelinking feature changes binaries, it can interfere with the operation of certain software and/or modes such as AIDE, FIPS, etc. medium CM-6(a),SC-13 NaN 1.5.4 NaN System and Software Integrity
CCE-27024-9 Install AIDE install via yum The aide package can be installed with the following command: $ sudo yum install aide The AIDE package must be installed if it is to be available for integrity checking. medium CM-6(a) NaN NaN SRG-OS-000232 Verify Integrity with AIDE
CCE-27222-9 Configure Periodic Execution of AIDE enable cron via cron At a minimum, AIDE should be configured to run a weekly scan. To implement a daily execution of AIDE at 4:05am using cron, add the following line to /etc/crontab: 05 4 * * * root /usr/sbin/aide --check To implement a weekly execution of AIDE at 4:05am using cron, add the following line to /etc/crontab: 05 4 * * 0 root /usr/sbin/aide --check AIDE can be executed periodically through other means; this is merely one example. The usage of cron's special time codes, such as @daily and @weekly is acceptable. By default, AIDE does not install itself for periodic execution. Periodically running AIDE is necessary to reveal unexpected changes in installed files. Unauthorized changes to the baseline configuration could make the system vulnerable to various attacks or allow unauthorized access to the operating system. Changes to operating system configurations can have unintended side effects, some of which may be relevant to security. Detecting such changes and providing an automated response can help avoid unintended, negative consequences that could ultimately affect the security state of the operating system. The operating system's Information Management Officer (IMO)/Information System Security Officer (ISSO) and System Administrators (SAs) must be notified via email and/or monitoring system trap when there is an unauthorized modification of a configuration item. medium CM-6(a),SI-7,SI-7(1) NaN NaN SRG-OS-000094,SRG-OS-000098,SRG-OS-000196,SRG-OS-000202,SRG-OS-000232,SRG-OS-000265 Verify Integrity with AIDE
CCE-27135-3 Build and Test AIDE Database enable aide via aide Run the following command to generate a new database: $ sudo /usr/sbin/aide --init By default, the database will be written to the file /var/lib/aide/aide.db.new.gz. Storing the database, the configuration file /etc/aide.conf, and the binary /usr/sbin/aide (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: $ sudo cp /var/lib/aide/aide.db.new.gz /var/lib/aide/aide.db.gz To initiate a manual check, run the following command: $ sudo /usr/sbin/aide --check If this check produces any unexpected output, investigate. For AIDE to be effective, an initial database of "known-good" information about files must be captured and it should be able to be verified against the installed files. medium CM-6(a) NaN NaN SRG-OS-000232 Verify Integrity with AIDE
CCE-80499-7 Verify and Correct Ownership with RPM verify via rpms The RPM package management system can check file ownership permissions of installed software packages, including many that are important to system security. After locating a file with incorrect permissions, which can be found with rpm -Va | awk '{ if (substr($0,6,1)=="U" || substr($0,7,1)=="G") print $NF }' run the following command to determine which package owns it: $ rpm -qf FILENAME Next, run the following command to reset its permissions to the correct values: $ sudo rpm --setugids PACKAGENAME Ownership of binaries and configuration files that is incorrect could allow an unauthorized user to gain privileges that they should not have. The ownership set by the vendor should be maintained. Any deviations from this baseline should be investigated. high SI-7 NaN NaN SRG-OS-000257,SRG-OS-000258 Verify Integrity with RPM
CCE-27223-7 Verify File Hashes with RPM verify via rpms Without cryptographic integrity protections, system executables and files can be altered by unauthorized users without detection. The RPM package management system can check the hashes of installed software packages, including many that are important to system security. To verify that the cryptographic hash of system files and commands matches vendor values, run the following command to list which files on the system have hashes that differ from what is expected by the RPM database: $ rpm -Va | grep '^..5' A "c" 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: $ rpm -qf FILENAME The package can be reinstalled from a yum repository using the command: $ sudo yum reinstall PACKAGENAME Alternatively, the package can be reinstalled from trusted media using the command: $ sudo rpm -Uvh PACKAGENAME 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. high AU-9(3),CM-6(c),CM-6(d),SI-7,SI-7(1),SI-7(6) NaN 1.2.6 SRG-OS-000278,SRG-OS-999999 Verify Integrity with RPM
CCE-26731-0 Verify and Correct File Permissions with RPM verify via rpms The RPM package management system can check file access permissions of installed software packages, including many that are important to system security. Verify that the file permissions of system files and commands match vendor values. Check the file permissions with the following command: $ sudo rpm -Va | awk '{ if (substr($0,2,1)=="M") print $NF }' Output indicates files that do not match vendor defaults. After locating a file with incorrect permissions, run the following command to determine which package owns it: $ rpm -qf FILENAME Next, run the following command to reset its permissions to the correct values: $ sudo rpm --setperms PACKAGENAME 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. high SI-7 NaN NaN SRG-OS-000256,SRG-OS-999999 Verify Integrity with RPM
CCE-27409-2 Install Intrusion Detection Software install via SELinux The base Red Hat Enterprise Linux 6 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. Host-based intrusion detection tools provide a system-level defense when an intruder gains access to a system or network. medium CM-6(a) NaN NaN SRG-OS-000196 Endpoint Protection Software
CCE-80511-9 Configure Backups of User Data enable via backup solution The operating system must conduct backups of user data contained in the operating system. The operating system provides utilities for automating backups of user data. Commercial and open-source products are also available. Operating system backup is a critical step in maintaining data assurance and availability. User-level information is data generated by information system and/or application users. Backups shall be consistent with organizational recovery time and recovery point objectives.false medium NaN NaN NaN SRG-OS-000099 Endpoint Protection Software
CCE-27529-7 Install Virus Scanning Software install via yum Virus scanning software can be used to protect a system from penetration from computer viruses and to limit their spread through intermediate systems. The virus scanning software should be configured to perform scans dynamically on accessed files. If this capability is not available, the system must be configured to scan, at a minimum, all altered files on the system on a daily basis. If the system processes inbound SMTP mail, the virus scanner must be configured to scan all received mail. 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. high CM-6(a) NaN NaN SRG-OS-00270 Endpoint Protection Software
CCE-82981-2 Install libcap-ng-utils Package install via yum The libcap-ng-utils package can be installed with the following command: $ sudo yum install libcap-ng-utils libcap-ng-utils contains applications to analyze the posix posix capabilities of all the programs running on a system. libcap-ng-utils also lets system operators set the file system based capabilities. medium NaN NaN NaN SRG-OS-000445-GPOS-00199 System Tooling / Utilities
CCE-82967-1 Install tar Package install via yum The tar package can be installed with the following command: $ sudo yum install tar The GNU tar program saves many files together into one archive and can restore individual files (or all of the files) from the archive. tar includes multivolume support, automatic archive compression/decompression, the the ability to perform incremental and full backups. If medium NaN NaN NaN NaN System Tooling / Utilities
CCE-82218-9 Install openscap-scanner Package install via yum The openscap-scanner package can be installed with the following command: $ sudo yum install openscap-scanner openscap-scanner contains the oscap command line tool. This tool is a configuration and vulnerability scanner, capable of performing compliance checking using SCAP content. medium NaN NaN NaN SRG-OS-000191-GPOS-00080,SRG-OS-000480-GPOS-00227 System Tooling / Utilities
CCE-82997-8 Install cryptsetup-luks Package install via yum The cryptsetup-luks package can be installed with the following command: $ sudo yum install cryptsetup-luks LUKS is the upcoming standard for Linux hard disk encryption. By providing a standard on-disk format, it does not only facilitate compatibility among distributions, but also provide secure management of multiple user passwords. In contrast to existing solution, LUKS stores all necessary setup information in the partition header, enabling the user to transport or migrate their data seamlessly. LUKS for dm-crypt is implemented in cryptsetup. cryptsetup-luks is intended as a complete replacement for the original cryptsetup. It provides all the functionality of the original version plus all LUKS features, that are accessible by luks* action. medium NaN NaN NaN NaN System Tooling / Utilities
CCE-82958-0 Install vim Package install via yum The vim package can be installed with the following command: $ sudo yum install vim Vim (Vi IMproved) is an almost compatible version of the UNIX editor vi. low NaN NaN NaN NaN System Tooling / Utilities
CCE-82952-3 Install scap-security-guide Package install via yum The scap-security-guide package can be installed with the following command: $ sudo yum install scap-security-guide The scap-security-guide package provides a guide for configuration of the system from the final system's security point of view. The guidance is specified in the Security Content Automation Protocol (SCAP) format and constitutes a catalog of practical hardening advice, linked to government requirements where applicable. The SCAP Security Guide project bridges the gap between generalized policy requirements and specific implementation guidelines. A system administrator can use the oscap CLI tool from the openscap-scanner package, or the SCAP Workbench GUI tool from the scap-workbench package, to verify that the system conforms to provided guidelines. Refer to the scap-security-guide(8) manual page for futher information. medium NaN NaN NaN SRG-OS-000480-GPOS-00227 System Tooling / Utilities
CCE-82637-0 Install subscription-manager Package install via yum The subscription-manager package can be installed with the following command: $ sudo yum install subscription-manager Red Hat Subscription Manager is a local service which tracks installed products and subscriptions on a local system to help manage subscription assignments. It communicates with the backend subscription service (the Customer Portal or an on-premise server such as Subscription Asset Manager) and works with content management tools such as yum. medium NaN FPT_TUD_EXT.1,FPT_TUD_EXT.2 NaN SRG-OS-000366-GPOS-00153 System Tooling / Utilities
CCE-82991-1 Install binutils Package install via yum The binutils package can be installed with the following command: $ sudo yum install binutils binutils is a collection of binary utilities required for foundational system operator activities, such as ld, nm, objcopy and readelf. medium NaN NaN NaN NaN System Tooling / Utilities
CCE-82970-5 Install rng-tools Package install via yum The rng-tools package can be installed with the following command: $ sudo yum install rng-tools rng-tools provides hardware random number generator tools, such as those used in the formation of x509/PKI certificates. medium NaN NaN NaN SRG-OS-000480-GPOS-00227 System Tooling / Utilities
CCE-82942-4 Uninstall geolite2-city Package remove via yum The geolite2-city package can be removed with the following command: $ sudo yum erase geolite2-city geolite2-city is part of the GeoLite2 database packages, offering geolocation databases and tooling. low NaN NaN NaN NaN System Tooling / Utilities
CCE-82928-3 Uninstall abrt-addon-kerneloops Package remove via yum The abrt-addon-kerneloops package can be removed with the following command: $ sudo yum erase abrt-addon-kerneloops abrt-addon-kerneloops contains plugins for collecting kernel crash information and reporter plugin which sends this information to a specified server, usually to kerneloops.org. low NaN NaN NaN SRG-OS-000095-GPOS-00049 System Tooling / Utilities
CCE-82912-7 Uninstall abrt-plugin-sosreport Package remove via yum The abrt-plugin-sosreport package can be removed with the following command: $ sudo yum erase abrt-plugin-sosreport abrt-plugin-sosreport provides a plugin to include an sosreport in an ABRT report. low NaN NaN NaN SRG-OS-000095-GPOS-00049 System Tooling / Utilities
CCE-82909-3 Uninstall abrt-cli Package remove via yum The abrt-cli package can be removed with the following command: $ sudo yum erase abrt-cli abrt-cli contains a command line client for controlling abrt daemon over sockets. low NaN NaN NaN SRG-OS-000095-GPOS-00049 System Tooling / Utilities
CCE-82922-6 Uninstall abrt-addon-ccpp Package remove via yum The abrt-addon-ccpp package can be removed with the following command: $ sudo yum erase abrt-addon-ccpp abrt-addon-ccpp contains hooks for C/C++ crashed programs and abrt's C/C++ analyzer plugin. low NaN NaN NaN SRG-OS-000095-GPOS-00049 System Tooling / Utilities
CCE-82918-4 Uninstall abrt-plugin-rhtsupport Package remove via yum The abrt-plugin-rhtsupport package can be removed with the following command: $ sudo yum erase abrt-plugin-rhtsupport abrt-plugin-rhtsupport is a ABRT plugin to report bugs into the Red Hat Support system. low NaN NaN NaN SRG-OS-000095-GPOS-00049 System Tooling / Utilities
CCE-82938-2 Uninstall geolite2-country Package remove via yum The geolite2-country package can be removed with the following command: $ sudo yum erase geolite2-country geolite2-country is part of the GeoLite2 database packages, offering geolocation databases and tooling. low NaN NaN NaN NaN System Tooling / Utilities
CCE-82929-1 Uninstall krb5-workstation Package remove via yum The krb5-workstation package can be removed with the following command: $ sudo yum erase krb5-workstation Kerberos is a network authentication system. The krb5-workstation package contains the basic Kerberos programs (kinit, klist, kdestroy, kpasswd). Currently, Kerberos does not utilize FIPS 140-2 cryptography and is not permitted on Government networks, nor is it permitted in many regulatory environments such as HIPAA. medium NaN NaN NaN SRG-OS-000095-GPOS-00049,SRG-OS-000120-GPOS-00061 System Tooling / Utilities
CCE-82906-9 Uninstall tuned Package remove via yum The tuned package can be removed with the following command: $ sudo yum erase tuned tuned contains a daemon that tunes the system settings dynamically. It does so by monitoring the usage of several system components periodically. Based on that information, components will then be put into lower or higher power savings modes to adapt to the current usage. low NaN NaN NaN SRG-OS-000095-GPOS-00049 System Tooling / Utilities
CCE-82945-7 Uninstall gssproxy Package remove via yum The gssproxy package can be removed with the following command: $ sudo yum erase gssproxy gssproxy is a proxy for GSS API credential handling. low NaN NaN NaN SRG-OS-000095-GPOS-00049 System Tooling / Utilities
CCE-82925-9 Uninstall abrt-addon-python Package remove via yum The abrt-addon-python package can be removed with the following command: $ sudo yum erase abrt-addon-python abrt-addon-python contains python hook and python analyzer plugin for handling uncaught exceptions in python programs. low NaN NaN NaN SRG-OS-000095-GPOS-00049 System Tooling / Utilities
CCE-82948-1 Uninstall iprutils Package remove via yum The iprutils package can be removed with the following command: $ sudo yum erase iprutils iprutils provides a suite of utlilities to manage and configure SCSI devices supported by the ipr SCSI storage device driver. low NaN NaN NaN SRG-OS-000095-GPOS-00049 System Tooling / Utilities
CCE-82915-0 Uninstall abrt-plugin-logger Package remove via yum The abrt-plugin-logger package can be removed with the following command: $ sudo yum erase abrt-plugin-logger abrt-plugin-logger is an ABRT plugin which writes a report to a specified file. low NaN NaN NaN SRG-OS-000095-GPOS-00049 System Tooling / Utilities
CCE-26435-8 Ensure /tmp Located On Separate Partition partition via /etc/fstab The /tmp 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. The /tmp partition is used as temporary storage by many programs. Placing /tmp in its own partition enables the setting of more restrictive mount options, which can help protect programs which use it. low SC-32 NaN NaN SRG-OS-999999 Disk Partitioning
CCE-26436-6 Ensure /var/log/audit Located On Separate Partition partition via /etc/fstab Audit logs are stored in the /var/log/audit 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. Placing /var/log/audit 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. low SC-32 NaN NaN SRG-OS-000044 Disk Partitioning
CCE-81045-7 Ensure /var Located On Separate Partition partition via /etc/fstab The /var directory is used by daemons and other system services to store frequently-changing data. Ensure that /var has its own partition or logical volume at installation time, or migrate it using LVM. Ensuring that /var 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 /var directory to contain world-writable directories installed by other software packages. low SC-32 NaN NaN SRG-OS-999999 Disk Partitioning
CCE-26557-9 Ensure /home Located On Separate Partition partition via /etc/fstab If user home directories will be stored locally, create a separate partition for /home at installation time (or migrate it later using LVM). If /home 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. Ensuring that /home 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. low SC-32 NaN NaN SRG-OS-999999 Disk Partitioning
CCE-27596-6 Encrypt Partitions partition via /etc/crypttab 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. For manual installations, select the Encrypt 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. For automated/unattended installations, it is possible to use Kickstart by adding the --encrypted and --passphrase= options to the definition of each partition to be encrypted. For example, the following line would encrypt the root partition: part / --fstype=ext4 --size=100 --onpart=hda1 --encrypted --passphrase=PASSPHRASE Any PASSPHRASE is stored in the Kickstart in plaintext, and the Kickstart must then be protected accordingly. Omitting the --passphrase= option from the partition definition will cause the installer to pause and interactively ask for the passphrase during installation. By default, the Anaconda installer uses aes-xts-plain64 cipher with a minimum 512 bit key size which should be compatible with FIPS enabled. Detailed information on encrypting partitions using LUKS or LUKS ciphers can be found on the Red Hat Enterprise Linux 6 Documentation web site: https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/Security_Guide/sec-Encryption.html. The risk of a system'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. high SC-28 NaN NaN SRG-OS-000131,SRG-OS-000185,SRG-OS-000230 Disk Partitioning
CCE-26215-4 Ensure /var/log Located On Separate Partition partition via /etc/fstab System logs are stored in the /var/log directory. Ensure that it has its own partition or logical volume at installation time, or migrate it using LVM. Placing /var/log in its own partition enables better separation between log files and other files in /var/. medium AU-4,CM-6(a),SC-5(2) NaN NaN SRG-OS-999999 Disk Partitioning
CCE-26506-6 Ensure Red Hat GPG Key Installed import via rpm 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: $ sudo subscription-manager register 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 /media/cdrom, use the following command as the root user to import it into the keyring: $ sudo rpm --import /media/cdrom/RPM-GPG-KEY Alternatively, the key may be pre-loaded during the RHEL installation. In such cases, the key can be installed by running the following command: sudo rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release Changes to software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor. The Red Hat GPG key is necessary to cryptographically verify packages are from Red Hat. high CM-5(3),CM-6(a),SC-12,SC-12(3),SI-7 FPT_TUD_EXT.1,FPT_TUD_EXT.2 NaN SRG-OS-000090 Updating Software
CCE-26647-8 Ensure gpgcheck Enabled for All yum Package Repositories 0 via yum.repos.d To ensure signature checking is not disabled for any repos, remove any lines from files in /etc/yum.repos.d of the form: gpgcheck=0 Verifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This ensures the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. Certificates used to verify the software must be from an approved Certificate Authority (CA)." high CM-11(a),CM-11(b),CM-5(3),CM-6(a),SA-12,SA-12(10),SC-12,SC-12(3),SI-7 FPT_TUD_EXT.1,FPT_TUD_EXT.2 NaN SRG-OS-000103 Updating Software
CCE-27635-2 Ensure Software Patches Installed install via yum 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: $ sudo yum update 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 rpm. NOTE: U.S. Defense systems are required to be patched within 30 days or sooner as local policy dictates. Installing software updates is a fundamental mitigation against the exploitation of publicly-known vulnerabilities. If the most recent security patches and updates are not installed, unauthorized users may take advantage of weaknesses in the unpatched software. The lack of prompt attention to patching could result in a system compromise. high CM-6(a),SI-2(5),SI-2(c) FMT_MOF_EXT.1 NaN SRG-OS-000191 Updating Software
CCE-26709-6 Ensure gpgcheck Enabled In Main yum Configuration 1 via yum.conf The gpgcheck option controls whether RPM packages' signatures are always checked prior to installation. To configure yum to check package signatures before installing them, ensure the following line appears in /etc/yum.conf in the [main] section: gpgcheck=1 Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor. Accordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization. Verifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This ensures the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. Certificates used to verify the software must be from an approved Certificate Authority (CA). high CM-11(a),CM-11(b),CM-5(3),CM-6(a),SA-12,SA-12(10),SC-12,SC-12(3),SI-7 FPT_TUD_EXT.1,FPT_TUD_EXT.2 NaN SRG-OS-000103 Updating Software
CCE-26235-2 Enable Screen Lock Activation After Idle Period enable via gconftool-2 Run the following command to activate locking of the screensaver in the GNOME desktop when it is activated: $ sudo gconftool-2 --direct \ --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory \ --type bool \ --set /apps/gnome-screensaver/lock_enabled true 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. medium CM-6(a) NaN NaN SRG-OS-000029 Configure GNOME Screen Locking
CCE-26600-7 GNOME Desktop Screensaver Mandatory Use enable via gconftool-3 Run the following command to activate the screensaver in the GNOME desktop after a period of inactivity: $ sudo gconftool-2 --direct \ --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory \ --type bool \ --set /apps/gnome-screensaver/idle_activation_enabled true 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. medium AC-11(a),CM-6(a) NaN NaN SRG-OS-000029 Configure GNOME Screen Locking
CCE-26828-4 Set GNOME Login Inactivity Timeout 10 via gconftool-4 Run the following command to set the idle time-out value for inactivity in the GNOME desktop to minutes: $ sudo gconftool-2 \ --direct \ --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory \ --type int \ --set /desktop/gnome/session/idle_delay Setting the idle delay controls when the screensaver will start, and can be combined with screen locking to prevent access from passersby. medium AC-11(a),CM-6(a) NaN NaN SRG-OS-000029 Configure GNOME Screen Locking
CCE-26638-7 Implement Blank Screensaver blank-only via gconftool-5 Run the following command to set the screensaver mode in the GNOME desktop to a blank screen: $ sudo gconftool-2 --direct \ --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory \ --type string \ --set /apps/gnome-screensaver/mode blank-only Setting the screensaver mode to blank-only conceals the contents of the display from passersby. unknown AC-11(b),CM-6(a) NaN NaN SRG-OS-000031 Configure GNOME Screen Locking
CCE-27230-2 Disable the User List disable via gconftool-6 In the default graphical environment, users logging directly into the system are greeted with a login screen that displays all known users. This functionality should be disabled. Run the following command to disable the user list: $ sudo gconftool-2 --direct \ --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory \ --type bool \ --set /apps/gdm/simple-greeter/disable_user_list true Leaving the user list enabled is a security risk since it allows anyone with physical access to the system to quickly enumerate known user accounts without logging in. medium AC-23,CM-6(a),CM-7(b) NaN NaN SRG-OS-999999 Configure GNOME Login Screen
CCE-27224-5 Disable All GNOME Thumbnailers disable via gconftool-7 The system's default desktop environment, GNOME, uses a number of different thumbnailer programs to generate thumbnails for any new or modified content in an opened folder. The following command can disable the execution of these thumbnail applications: $ sudo gconftool-2 --direct \ --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory \ --type bool \ --set /desktop/gnome/thumbnailers/disable_all true This effectively prevents an attacker from gaining access to a system through a flaw in GNOME's Nautilus thumbnail creators. An attacker with knowledge of a flaw in a GNOME thumbnailer application could craft a malicious file to exploit this flaw. Assuming the attacker could place the malicious file on the local filesystem (via a web upload for example) and assuming a user browses the same location using Nautilus, the malicious file would exploit the thumbnailer with the potential for malicious code execution. It is best to disable these thumbnailer applications unless they are explicitly required. unknown CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN GNOME Media Settings
CCE-27035-5 Disable GNOME Automounting disable via gconftool-8 The system's default desktop environment, GNOME, will mount devices and removable media (such as DVDs, CDs and USB flash drives) whenever they are inserted into the system. Disable automount and autorun within GNOME by running the following: $ sudo gconftool-2 --direct \ --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory \ --type bool \ --set /apps/nautilus/preferences/media_automount false $ sudo gconftool-2 --direct \ --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory \ --type bool \ --set /apps/nautilus/preferences/media_autorun_never true Disabling automatic mounting in GNOME can prevent the introduction of malware via removable media. It will, however, also prevent desktop users from legitimate use of removable media. unknown CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN GNOME Media Settings
CCE-82212-2 Install sudo Package install via yum The sudo package can be installed with the following command: $ sudo yum install sudo sudo is a program designed to allow a system administrator to give limited root privileges to users and log root activity. The basic philosophy is to give as few privileges as possible but still allow system users to get their work done. medium CM-6(a) NaN NaN SRG-OS-000324-GPOS-00125 Sudo
CCE-80506-9 Ensure Users Re-Authenticate for Privilege Escalation - sudo verify via sudoers The sudo NOPASSWD and !authenticate option, when specified, allows a user to execute commands using sudo without having to authenticate. This should be disabled by making sure that NOPASSWD and/or !authenticate do not exist in /etc/sudoers configuration file or any sudo configuration snippets in /etc/sudoers.d/." Without re-authentication, users may access resources or perform tasks for which they do not have authorization. When operating systems provide the capability to escalate a functional capability, it is critical that the user re-authenticate. medium CM-6(a),IA-11 NaN NaN SRG-OS-000373 Sudo
CCE-27151-0 Disable Zeroconf Networking disable via /etc/sysconfig/network Zeroconf networking allows the system to assign itself an IP address and engage in IP communication without a statically-assigned address or even a DHCP server. Automatic address assignment via Zeroconf (or DHCP) is not recommended. To disable Zeroconf automatic route assignment in the 169.254.0.0 subnet, add or correct the following line in /etc/sysconfig/network: NOZEROCONF=yes Zeroconf addresses are in the network 169.254.0.0. The networking scripts add entries to the system's routing table for these addresses. Zeroconf address assignment commonly occurs when the system is configured to use DHCP but fails to receive an address assignment from the DHCP server. unknown CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Network Configuration and Firewalls
CCE-27152-8 Ensure System is Not Acting as a Network Sniffer disable via ip The system should not be acting as a network sniffer, which can capture all traffic on the network to which it is connected. Run the following to determine if any interface is running in promiscuous mode: $ ip link | grep PROMISC Promiscuous mode of an interface can be disabled with the following command: $ sudo ip link set dev device_name multicast off promisc off Network interfaces in promiscuous mode allow for the capture of all network traffic visible to the system. If unauthorized individuals can access these applications, it may allow them to collect information such as logon IDs, passwords, and key exchanges between systems. If the system is being used to perform a network troubleshooting function, the use of these tools must be documented with the Information Systems Security Manager (ISSM) and restricted to only authorized personnel. medium CM-6(a),CM-7(2),CM-7(a),CM-7(b),MA-3 NaN NaN SRG-OS-000480-GPOS-00227 Network Configuration and Firewalls
CCE-82984-6 Install iptables Package install via yum The iptables package can be installed with the following command: $ sudo yum install iptables iptables controls the Linux kernel network packet filtering code. iptables allows system operators to set up firewalls and IP masquerading, etc. medium CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 iptables and ip6tables
CCE-27018-1 Verify iptables Enabled enable via chkconfig The iptables service can be enabled with the following command: $ sudo chkconfig --level 2345 iptables on The iptables service provides the system's host-based firewalling capability for IPv4 and ICMP. medium AC-4,CA-3(5),CM-6(a),CM-7(b),SC-7(21) NaN NaN SRG-OS-000145,SRG-OS-000146,SRG-OS-000152 Inspect and Activate Default Rules
CCE-27006-6 Verify ip6tables Enabled if Using IPv6 enable via chkconfig The ip6tables service can be enabled with the following command: $ sudo chkconfig --level 2345 ip6tables on The ip6tables service provides the system's host-based firewalling capability for IPv6 and ICMPv6. medium AC-4,CA-3(5),CM-6(a),CM-7(b),SC-7(21) NaN NaN SRG-OS-000145,SRG-OS-000146,SRG-OS-000152 Inspect and Activate Default Rules
CCE-27317-7 Set Default ip6tables Policy for Incoming Packets firewall enabled via iptables 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 /etc/sysconfig/ip6tables: :INPUT DROP [0:0] If changes were required, reload the ip6tables rules: $ sudo service ip6tables reload In ip6tables, the default policy is applied only after all the applicable rules in the table are examined for a match. Setting the default policy to DROP implements proper design for a firewall, i.e. any packets which are not explicitly permitted should not be accepted. medium AC-4,CA-3(5),CM-6(a),CM-7(b),SC-7(21) NaN NaN SRG-OS-000231 Inspect and Activate Default Rules
CCE-26444-0 Set Default iptables Policy for Incoming Packets firewall enabled via iptables 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 /etc/sysconfig/iptables: :INPUT DROP [0:0] In iptables the default policy is applied only after all the applicable rules in the table are examined for a match. Setting the default policy to DROP implements proper design for a firewall, i.e. any packets which are not explicitly permitted should not be accepted. medium CA-3(5),CM-6(a),CM-7(b),SC-7(23) NaN NaN SRG-OS-000231 Strengthen the Default Ruleset
CCE-27186-6 Set Default iptables Policy for Forwarded Packets firewall enabled via iptables 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 /etc/sysconfig/iptables: :FORWARD DROP [0:0] In iptables, the default policy is applied only after all the applicable rules in the table are examined for a match. Setting the default policy to DROP implements proper design for a firewall, i.e. any packets which are not explicitly permitted should not be accepted. medium CA-3(5),CM-6(a),CM-7(b),SC-7(23) NaN NaN SRG-OS-000147 Strengthen the Default Ruleset
CCE-27232-8 Disable Support for RPC IPv6 disable via netconfig RPC services for NFSv4 try to load transport modules for udp6 and tcp6 by default, even if IPv6 has been disabled in /etc/modprobe.d. To prevent RPC services such as rpc.mountd from attempting to start IPv6 network listeners, remove or comment out the following two lines in /etc/netconfig: udp6 tpi_clts v inet6 udp - - tcp6 tpi_cots_ord v inet6 tcp - - NaN unknown CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Disable Support for IPv6 Unless Needed
CCE-27153-6 Disable IPv6 Networking Support Automatic Loading disable via modprobe.d To prevent the IPv6 kernel module (ipv6) from binding to the IPv6 networking stack, add the following line to /etc/modprobe.d/disabled.conf (or another file in /etc/modprobe.d): options ipv6 disable=1 This permits the IPv6 module to be loaded (and thus satisfy other modules that depend on it), while disabling support for the IPv6 protocol. Any unnecessary network stacks - including IPv6 - should be disabled, to reduce the vulnerability to exploitation. medium CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-999999 Disable Support for IPv6 Unless Needed
CCE-27161-9 Disable Interface Usage of IPv6 disable via /etc/sysconfig/network To disable interface usage of IPv6, add or correct the following lines in /etc/sysconfig/network: NETWORKING_IPV6=no IPV6INIT=no NaN unknown NaN NaN NaN NaN Disable Support for IPv6 Unless Needed
CCE-81014-3 Disable Kernel Parameter for Accepting Source-Routed Packets on IPv6 Interfaces by Default 0 via sysctl To set the runtime status of the net.ipv6.conf.default.accept_source_route kernel parameter, run the following command: $ sudo sysctl -w net.ipv6.conf.default.accept_source_route=0 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: net.ipv6.conf.default.accept_source_route = 0 Source-routed packets allow the source of the packet to suggest routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routerd traffic, such as when IPv6 forwarding is enabled and the system is functioning as a router. Accepting source-routed packets in the IPv6 protocol has few legitimate uses. It should be disabled unless it is absolutely required. medium CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-000480-GPOS-00227 Configure IPv6 Settings if Necessary
CCE-27164-3 Disable Accepting Router Advertisements on all IPv6 Interfaces by Default 0 via sysctl To set the runtime status of the net.ipv6.conf.default.accept_ra kernel parameter, run the following command: $ sudo sysctl -w net.ipv6.conf.default.accept_ra=0 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: net.ipv6.conf.default.accept_ra = 0 An illicit router advertisement message could result in a man-in-the-middle attack. unknown CM-6(a),CM-7(a),CM-7(b) NaN 4.4.1.1 SRG-OS-000480-GPOS-00227 Configure IPv6 Settings if Necessary
CCE-81008-5 Disable Accepting ICMP Redirects for All IPv6 Interfaces 0 via sysctl To set the runtime status of the net.ipv6.conf.all.accept_redirects kernel parameter, run the following command: $ sudo sysctl -w net.ipv6.conf.all.accept_redirects=0 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: net.ipv6.conf.all.accept_redirects = 0 An illicit ICMP redirect message could result in a man-in-the-middle attack. medium CM-6(a),CM-7(a),CM-7(b) NaN 4.4.1.2 SRG-OS-000480-GPOS-00227 Configure IPv6 Settings if Necessary
CCE-27233-6 Manually Assign Global IPv6 Address manually via ifcfg To manually assign an IP address for an interface, edit the file /etc/sysconfig/network-scripts/ifcfg-interface. Add or correct the following line (substituting the correct IPv6 address): IPV6ADDR=2001:0DB8::ABCD/64 Manually assigning an IP address is preferable to accepting one from routers or from the network otherwise. The example address here is an IPv6 address reserved for documentation purposes, as defined by RFC3849. NaN unknown CM-6(b) NaN NaN NaN Configure IPv6 Settings if Necessary
CCE-81012-7 Disable Kernel Parameter for Accepting Source-Routed Packets on all IPv6 Interfaces 0 via sysctl To set the runtime status of the net.ipv6.conf.all.accept_source_route kernel parameter, run the following command: $ sudo sysctl -w net.ipv6.conf.all.accept_source_route=0 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: net.ipv6.conf.all.accept_source_route = 0 Source-routed packets allow the source of the packet to suggest routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routerd traffic, such as when IPv6 forwarding is enabled and the system is functioning as a router. Accepting source-routed packets in the IPv6 protocol has few legitimate uses. It should be disabled unless it is absolutely required. medium CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-000480-GPOS-00227 Configure IPv6 Settings if Necessary
CCE-81005-1 Configure Accepting Router Advertisements on All IPv6 Interfaces 0 via sysctl To set the runtime status of the net.ipv6.conf.all.accept_ra kernel parameter, run the following command: $ sudo sysctl -w net.ipv6.conf.all.accept_ra=0 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: net.ipv6.conf.all.accept_ra = 0 An illicit router advertisement message could result in a man-in-the-middle attack. unknown CM-6(a),CM-7(a),CM-7(b) NaN 4.4.1.1 SRG-OS-000480-GPOS-00227 Configure IPv6 Settings if Necessary
CCE-27154-4 Use Privacy Extensions for Address manually via ifcfg To introduce randomness into the automatic generation of IPv6 addresses, add or correct the following line in /etc/sysconfig/network-scripts/ifcfg-interface: IPV6_PRIVACY=rfc3041 Automatically-generated IPv6 addresses are based on the underlying hardware (e.g. Ethernet) address, and so it becomes possible to track a piece of hardware over its lifetime using its traffic. If it is important for a system's IP address to not trivially reveal its hardware address, this setting should be applied. NaN unknown CM-6(b) NaN NaN NaN Configure IPv6 Settings if Necessary
CCE-27234-4 Manually Assign IPv6 Router Address manually via ifcfg Edit the file /etc/sysconfig/network-scripts/ifcfg-interface, and add or correct the following line (substituting your gateway IP as appropriate): IPV6_DEFAULTGW=2001:0DB8::0001 Router addresses should be manually set and not accepted via any auto-configuration or router advertisement. NaN unknown CM-6(b) NaN NaN NaN Configure IPv6 Settings if Necessary
CCE-27166-8 Disable Kernel Parameter for Accepting ICMP Redirects by Default on IPv6 Interfaces 0 via sysctl To set the runtime status of the net.ipv6.conf.default.accept_redirects kernel parameter, run the following command: $ sudo sysctl -w net.ipv6.conf.default.accept_redirects=0 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: net.ipv6.conf.default.accept_redirects = 0 An illicit ICMP redirect message could result in a man-in-the-middle attack. medium CM-6(a),CM-7(a),CM-7(b) NaN 4.4.1.2 SRG-OS-999999 Configure IPv6 Settings if Necessary
CCE-82862-4 Disable Kernel Parameter for IPv6 Forwarding 0 via sysctl To set the runtime status of the net.ipv6.conf.all.forwarding kernel parameter, run the following command: $ sudo sysctl -w net.ipv6.conf.all.forwarding=0 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: net.ipv6.conf.all.forwarding = 0 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. medium CM-6(a),CM-7(a),CM-7(b) NaN 4.1.1 NaN Configure IPv6 Settings if Necessary
CCE-27626-1 Install libreswan Package install yum The Libreswan package provides an implementation of IPsec and IKE, which permits the creation of secure tunnels over untrusted networks. The libreswan package can be installed with the following command: $ sudo yum install libreswan 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. medium CM-6(a) NaN NaN SRG-OS-000160 IPSec Support
CCE-27081-9 Disable Bluetooth Service disable via chkconfig The bluetooth service can be disabled with the following command: $ sudo chkconfig bluetooth off $ sudo service bluetooth stop Disabling the bluetooth 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. medium AC-18(3),AC-18(a),CM-6(a),CM-7(a),CM-7(b),MP-7 NaN NaN SRG-OS-000034 Disable Wireless Through Software Configuration
CCE-26878-9 Disable WiFi or Bluetooth in BIOS disable via BIOS Some machines that include built-in wireless support offer the ability to disable the device through the BIOS. This is hardware-specific; consult your hardware manual or explore the BIOS setup during boot. Disabling wireless support in the BIOS prevents easy activation of the wireless interface, generally requiring administrators to reboot the system first. unknown AC-18(3),AC-18(a),CM-6(a),CM-7(a),CM-7(b),MP-7 NaN NaN NaN Disable Wireless Through Software Configuration
CCE-26763-3 Disable Bluetooth Kernel Module disable via modprobe.d The kernel's module loading system can be configured to prevent loading of the Bluetooth module. Add the following to the appropriate /etc/modprobe.d configuration file to prevent the loading of the Bluetooth module: install bluetooth /bin/true If Bluetooth functionality must be disabled, preventing the kernel from loading the kernel module provides an additional safeguard against its activation. medium AC-18(3),AC-18(a),CM-6(a),CM-7(a),CM-7(b),MP-7 NaN NaN SRG-OS-000034 Disable Wireless Through Software Configuration
CCE-27057-9 Deactivate Wireless Network Interfaces disable via nmcli Deactivating wireless network interfaces should prevent normal usage of the wireless capability. Configure the system to disable all wireless network interfaces with the following command: $ sudo nmcli radio wifi off The use of wireless networking can introduce many different attack vectors into the organization's network. Common attack vectors such as malicious association and ad hoc networks will allow an attacker to spoof a wireless access point (AP), allowing validated systems to connect to the malicious AP and enabling the attacker to monitor and record network traffic. These malicious APs can also serve to create a man-in-the-middle attack or be used to create a denial of service to valid network resources. medium AC-18(3),AC-18(a),CM-6(a),CM-7(a),CM-7(b),MP-7 NaN NaN SRG-OS-000424-GPOS-00188 Disable Wireless Through Software Configuration
CCE-26831-8 Configure Kernel Parameter for Accepting Secure Redirects By Default enable via sysctl To set the runtime status of the net.ipv4.conf.default.secure_redirects kernel parameter, run the following command: $ sudo sysctl -w net.ipv4.conf.default.secure_redirects=0 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: net.ipv4.conf.default.secure_redirects = 0 Accepting "secure" ICMP redirects (from those gateways listed as default gateways) has few legitimate uses. It should be disabled unless it is absolutely required. medium CM-7(a),CM-7(b),SC-5,SC-7(a) NaN 3.2.3 SRG-OS-999999 Network Related Kernel Runtime Parameters for Hosts and Routers
CCE-26983-7 Disable Kernel Parameter for Accepting Source-Routed Packets on IPv4 Interfaces by Default disable via sysctl To set the runtime status of the net.ipv4.conf.default.accept_source_route kernel parameter, run the following command: $ sudo sysctl -w net.ipv4.conf.default.accept_source_route=0 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: net.ipv4.conf.default.accept_source_route = 0 Source-routed packets allow the source of the packet to suggest routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. Accepting source-routed packets in the IPv4 protocol has few legitimate uses. It should be disabled unless it is absolutely required, such as when IPv4 forwarding is enabled and the system is legitimately functioning as a router. medium CM-7(a),CM-7(b),SC-5,SC-7(a) NaN NaN SRG-OS-999999 Network Related Kernel Runtime Parameters for Hosts and Routers
CCE-27066-0 Enable Kernel Parameter to Log Martian Packets on all IPv4 Interfaces enable via sysctl To set the runtime status of the net.ipv4.conf.all.log_martians kernel parameter, run the following command: $ sudo sysctl -w net.ipv4.conf.all.log_martians=1 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: net.ipv4.conf.all.log_martians = 1 The presence of "martian" 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. unknown AC-3(10) NaN NaN SRG-OS-999999 Network Related Kernel Runtime Parameters for Hosts and Routers
CCE-27037-1 Disable Kernel Parameter for Accepting Source-Routed Packets on all IPv4 Interfaces disable via sysctl To set the runtime status of the net.ipv4.conf.all.accept_source_route kernel parameter, run the following command: $ sudo sysctl -w net.ipv4.conf.all.accept_source_route=0 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: net.ipv4.conf.all.accept_source_route = 0 Source-routed packets allow the source of the packet to suggest routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routerd traffic, such as when IPv4 forwarding is enabled and the system is functioning as a router. Accepting source-routed packets in the IPv4 protocol has few legitimate uses. It should be disabled unless it is absolutely required. medium CM-7(a),CM-7(b),SC-5CM-6(a),SC-7(a) NaN NaN SRG-OS-999999 Network Related Kernel Runtime Parameters for Hosts and Routers
CCE-27053-8 Enable Kernel Parameter to Use TCP Syncookies on IPv4 Interfaces enable via sysctl To set the runtime status of the net.ipv4.tcp_syncookies kernel parameter, run the following command: $ sudo sysctl -w net.ipv4.tcp_syncookies=1 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: net.ipv4.tcp_syncookies = 1 A TCP SYN flood attack can cause a denial of service by filling a system'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. medium CM-6(a),CM-7(a),CM-7(b),SC-5(1),SC-5(2),SC-5(3)(a) NaN NaN SRG-OS-000142 Network Related Kernel Runtime Parameters for Hosts and Routers
CCE-26854-0 Disable Kernel Parameter for Accepting Secure ICMP Redirects on all IPv4 Interfaces disable via sysctl To set the runtime status of the net.ipv4.conf.all.secure_redirects kernel parameter, run the following command: $ sudo sysctl -w net.ipv4.conf.all.secure_redirects=0 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: net.ipv4.conf.all.secure_redirects = 0 Accepting "secure" ICMP redirects (from those gateways listed as default gateways) has few legitimate uses. It should be disabled unless it is absolutely required. medium CM-6(a),CM-7(a),CM-7(b),SC-7(a) NaN NaN SRG-OS-999999 Network Related Kernel Runtime Parameters for Hosts and Routers
CCE-27027-2 Disable Accepting ICMP Redirects for All IPv4 Interfaces disable via sysctl To set the runtime status of the net.ipv4.conf.all.accept_redirects kernel parameter, run the following command: $ sudo sysctl -w net.ipv4.conf.all.accept_redirects=0 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: net.ipv4.conf.all.accept_redirects = 0 ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack. This feature of the IPv4 protocol has few legitimate uses. It should be disabled unless absolutely required." medium CM-6(a),CM-7(a),CM-7(b),SC-7(a) NaN NaN SRG-OS-999999 Network Related Kernel Runtime Parameters for Hosts and Routers
CCE-26993-6 Enable Kernel Parameter to Ignore Bogus ICMP Error Responses on IPv4 Interfaces enable via sysctl To set the runtime status of the net.ipv4.icmp_ignore_bogus_error_responses kernel parameter, run the following command: $ sudo sysctl -w net.ipv4.icmp_ignore_bogus_error_responses=1 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: net.ipv4.icmp_ignore_bogus_error_responses = 1 Ignoring bogus ICMP error responses reduces log size, although some activity would not be logged. unknown CM-7(a),CM-7(b),SC-5 NaN NaN SRG-OS-999999 Network Related Kernel Runtime Parameters for Hosts and Routers
CCE-27015-7 Disable Kernel Parameter for Accepting ICMP Redirects by Default on IPv4 Interfaces disable via sysctl To set the runtime status of the net.ipv4.conf.default.accept_redirects kernel parameter, run the following command: $ sudo sysctl -w net.ipv4.conf.default.accept_redirects=0 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: net.ipv4.conf.default.accept_redirects = 0 ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack. This feature of the IPv4 protocol has few legitimate uses. It should be disabled unless absolutely required. medium CM-6(a),CM-7(a),CM-7(b),SC-7(a) NaN NaN SRG-OS-999999 Network Related Kernel Runtime Parameters for Hosts and Routers
CCE-26883-9 Enable Kernel Parameter to Ignore ICMP Broadcast Echo Requests on IPv4 Interfaces enable via sysctl To set the runtime status of the net.ipv4.icmp_echo_ignore_broadcasts kernel parameter, run the following command: $ sudo sysctl -w net.ipv4.icmp_echo_ignore_broadcasts=1 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: net.ipv4.icmp_echo_ignore_broadcasts = 1 Responding to broadcast (ICMP) echoes facilitates network mapping and provides a vector for amplification attacks. Ignoring ICMP echo requests (pings) sent to broadcast or multicast addresses makes the system slightly more difficult to enumerate on the network. medium CM-7(a),CM-7(b),SC-5 NaN NaN SRG-OS-999999 Network Related Kernel Runtime Parameters for Hosts and Routers
CCE-26915-9 Enable Kernel Parameter to Use Reverse Path Filtering on all IPv4 Interfaces by Default enable via sysctl To set the runtime status of the net.ipv4.conf.default.rp_filter kernel parameter, run the following command: $ sudo sysctl -w net.ipv4.conf.default.rp_filter=1 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: net.ipv4.conf.default.rp_filter = 1 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. medium CM-6(a),CM-7(a),CM-7(b),SC-7(a) NaN NaN SRG-OS-999999 Network Related Kernel Runtime Parameters for Hosts and Routers
CCE-26979-5 Enable Kernel Parameter to Use Reverse Path Filtering on all IPv4 Interfaces enable via sysctl To set the runtime status of the net.ipv4.conf.all.rp_filter kernel parameter, run the following command: $ sudo sysctl -w net.ipv4.conf.all.rp_filter=1 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: net.ipv4.conf.all.rp_filter = 1 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. medium CM-6(a),CM-7(a),CM-7(b),SC-7(a) NaN NaN SRG-OS-999999 Network Related Kernel Runtime Parameters for Hosts and Routers
CCE-26866-4 Disable Kernel Parameter for IP Forwarding on IPv4 Interfaces disable via sysctl To set the runtime status of the net.ipv4.ip_forward kernel parameter, run the following command: $ sudo sysctl -w net.ipv4.ip_forward=0 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: net.ipv4.ip_forward = 0 Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this capability is used when not required, system network information may be unnecessarily transmitted across the network. medium CM-7(a),CM-7(b),SC-5CM-6(a),SC-7(a) NaN NaN SRG-OS-999999 Network Parameters for Hosts Only
CCE-27004-1 Disable Kernel Parameter for Sending ICMP Redirects on all IPv4 Interfaces disable via sysctl To set the runtime status of the net.ipv4.conf.all.send_redirects kernel parameter, run the following command: $ sudo sysctl -w net.ipv4.conf.all.send_redirects=0 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: net.ipv4.conf.all.send_redirects = 0 ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table possibly revealing portions of the network topology. The ability to send ICMP redirects is only appropriate for systems acting as routers. medium CM-7(a),CM-7(b),SC-5CM-6(a),SC-7(a) NaN NaN SRG-OS-999999 Network Parameters for Hosts Only
CCE-27001-7 Disable Kernel Parameter for Sending ICMP Redirects on all IPv4 Interfaces by Default disable via sysctl To set the runtime status of the net.ipv4.conf.default.send_redirects kernel parameter, run the following command: $ sudo sysctl -w net.ipv4.conf.default.send_redirects=0 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: net.ipv4.conf.default.send_redirects = 0 ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table possibly revealing portions of the network topology. The ability to send ICMP redirects is only appropriate for systems acting as routers. medium CM-7(a),CM-7(b),SC-5CM-6(a),SC-7(a) NaN NaN SRG-OS-999999 Network Parameters for Hosts Only
CCE-82161-1 Disable ATM Support disable via modprobe.d The Asynchronous Transfer Mode (ATM) is a protocol operating on network, data link, and physical layers, based on virtual circuits and virtual paths. To configure the system to prevent the atm kernel module from being loaded, add the following line to a file in the directory /etc/modprobe.d: install atm /bin/true Disabling ATM protects the system against exploitation of any flaws in its implementation. medium NaN FMT_SMF_EXT.1 NaN SRG-OS-000095-GPOS-00049 Uncommon Network Protocols
CCE-26696-5 Disable TIPC Support disable via modprobe.d The Transparent Inter-Process Communication (TIPC) protocol is designed to provide communications between nodes in a cluster. To configure the system to prevent the tipc kernel module from being loaded, add the following line to a file in the directory /etc/modprobe.d: install tipc /bin/true Disabling TIPC protects the system against exploitation of any flaws in its implementation. medium CM-6(a),CM-7(a),CM-7(b) FMT_SMF_EXT.1 NaN SRG-OS-000096 Uncommon Network Protocols
CCE-82163-7 Disable CAN Support disable via modprobe.d The Controller Area Network (CAN) is a serial communications protocol which was initially developed for automotive and is now also used in marine, industrial, and medical applications. To configure the system to prevent the can kernel module from being loaded, add the following line to a file in the directory /etc/modprobe.d: install can /bin/true Disabling CAN protects the system against exploitation of any flaws in its implementation. medium NaN FMT_SMF_EXT.1 NaN SRG-OS-000095-GPOS-00049 Uncommon Network Protocols
CCE-26410-1 Disable SCTP Support disable via modprobe.d 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 sctp kernel module from being loaded, add the following line to a file in the directory /etc/modprobe.d: install sctp /bin/true Disabling SCTP protects the system against exploitation of any flaws in its implementation. medium CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-000096 Uncommon Network Protocols
CCE-26239-4 Disable RDS Support disable via modprobe.d 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 rds kernel module from being loaded, add the following line to a file in the directory /etc/modprobe.d: install rds /bin/true Disabling RDS protects the system against exploitation of any flaws in its implementation. low CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-000096 Uncommon Network Protocols
CCE-26448-1 Disable DCCP Support disable via modprobe.d 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 dccp kernel module from being loaded, add the following line to a file in the directory /etc/modprobe.d: install dccp /bin/true Disabling DCCP protects the system against exploitation of any flaws in its implementation. medium CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-000096 Uncommon Network Protocols
CCE-81057-2 Restrict usage of ptrace to descendant processes restrict via sysctl To set the runtime status of the kernel.yama.ptrace_scope kernel parameter, run the following command: $ sudo sysctl -w kernel.yama.ptrace_scope=1 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: kernel.yama.ptrace_scope = 1 Unrestricted usage of ptrace allows compromised binaries to run ptrace on another processes of the user. Like this, the attacker can steal sensitive information from the target processes (e.g. SSH sessions, web browser, ...) without any additional assistance from the user (i.e. without resorting to phishing). medium NaN NaN NaN SRG-OS-000132-GPOS-00067 Restrict Programs from Dangerous Execution Patterns
CCE-81055-6 Disable Kernel Image Loading enable via sysctl To set the runtime status of the kernel.kexec_load_disabled kernel parameter, run the following command: $ sudo sysctl -w kernel.kexec_load_disabled=1 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: kernel.kexec_load_disabled = 1 Disabling kexec_load allows greater control of the kernel memory. It makes it impossible to load another kernel image after it has been disabled. medium NaN NaN NaN SRG-OS-000480-GPOS-00227 Restrict Programs from Dangerous Execution Patterns
CCE-27366-4 Restrict Access to Kernel Message Buffer restrict via sysctl To set the runtime status of the kernel.dmesg_restrict kernel parameter, run the following command: $ sudo sysctl -w kernel.dmesg_restrict=1 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: kernel.dmesg_restrict = 1 Unprivileged access to the kernel syslog can expose sensitive kernel address information. medium SI-11(a),SI-11(b) NaN NaN SRG-OS-000132-GPOS-00067 Restrict Programs from Dangerous Execution Patterns
CCE-27033-0 Disable Core Dumps for All Users 0 via limits.conf To disable core dumps for all users, add the following line to /etc/security/limits.conf, or to a file within the /etc/security/limits.d/ directory: * hard core 0 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. unknown NaN NaN NaN SRG-OS-999999 Disable Core Dumps
CCE-27044-7 Disable Core Dumps for SUID programs disable via sysctl To set the runtime status of the fs.suid_dumpable kernel parameter, run the following command: $ sudo sysctl -w fs.suid_dumpable=0 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: fs.suid_dumpable = 0 The core dump of a setuid program is more likely to contain sensitive data, as the program itself runs with greater privileges than the user who initiated execution of the program. Disabling the ability for any setuid program to write a core file decreases the risk of unauthorized access of such data. medium SI-11(a),SI-11(b) NaN NaN NaN Disable Core Dumps
CCE-27163-5 Enable NX or XD Support in the BIOS enable via BIOS Reboot the system and enter the BIOS or Setup configuration menu. Navigate the BIOS configuration menu and make sure that the option is enabled. The setting may be located under a Security section. Look for Execute Disable (XD) on Intel-based systems and No Execute (NX) on AMD-based systems. Computers with the ability to prevent this type of code execution frequently put an option in the BIOS that will allow users to turn the feature on or off at will. unknown CM-6(a),SC-39 NaN NaN NaN Enable Execute Disable (XD) or No Execute (NX) Support on x86 Systems
CCE-27010-8 Install PAE Kernel on Supported 32-bit x86 Systems install via yum Systems that are using the 64-bit x86 kernel package do not need to install the kernel-PAE package because the 64-bit x86 kernel already includes this support. However, if the system is 32-bit and also supports the PAE and NX features as determined in the previous section, the kernel-PAE package should be installed to enable XD or NX support. The kernel-PAE package can be installed with the following command: $ sudo yum install kernel-PAE The installation process should also have configured the bootloader to load the new kernel at boot. Verify this after reboot and modify /etc/grub.conf if necessary. On 32-bit systems that support the XD or NX bit, the vendor-supplied PAE kernel is required to enable either Execute Disable (XD) or No Execute (NX) support. unknown CM-6(a) NaN NaN NaN Enable Execute Disable (XD) or No Execute (NX) Support on x86 Systems
CCE-26999-3 Enable Randomized Layout of Virtual Address Space enable via sysctl To set the runtime status of the kernel.randomize_va_space kernel parameter, run the following command: $ sudo sysctl -w kernel.randomize_va_space=2 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: kernel.randomize_va_space = 2 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'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. medium CM-6(a),SC-30,SC-30(2) NaN NaN SRG-OS-999999 Enable ExecShield
CCE-27031-4 Set Daemon Umask “077” via UMASK The file /etc/init.d/functions includes initialization parameters for most or all daemons started at boot time. Many daemons on the system already individually restrict themselves to a umask of 077 in their own init scripts. By default, the umask of 022 is set which prevents creation of group- or world-writable files. To set the umask for daemons expected by the profile, edit the following line: umask 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. unknown AC-6(1),CM-6(a) NaN NaN SRG-OS-999999 Daemon Umask
CCE-82078-7 Add nodev Option to /var/log/audit nodev via /etc/fstab The nodev mount option can be used to prevent device files from being created in /var/log/audit. Legitimate character and block devices should exist only in the /dev directory on the root partition or within chroot jails built for system services. Add the nodev option to the fourth column of /etc/fstab for the line which controls mounting of /var/log/audit. The only legitimate location for device files is the /dev directory located on the root partition. The only exception to this is chroot jails. medium AC-6,AC-6(1),CM-6(a),CM-7(a),CM-7(b),MP-7 NaN NaN SRG-OS-000368-GPOS-00154 Restrict Partition Mount Options
CCE-82147-0 Add nosuid Option to /var/log/audit nosuid via /etc/fstab The nosuid mount option can be used to prevent execution of setuid programs in /var/log/audit. The SUID and SGID permissions should not be required in directories containing audit log files. Add the nosuid option to the fourth column of /etc/fstab for the line which controls mounting of /var/log/audit. The presence of SUID and SGID executables should be tightly controlled. Users should not be able to execute SUID or SGID binaries from partitions designated for audit log files. medium AC-6,AC-6(1),CM-6(a),CM-7(a),CM-7(b),MP-7 NaN NaN SRG-OS-000368-GPOS-00154 Restrict Partition Mount Options
CCE-26582-7 Bind Mount /var/tmp To /tmp bind via /etc/fstab The /var/tmp directory is a world-writable directory. Bind-mount it to /tmp in order to consolidate temporary storage into one location protected by the same techniques as /tmp. To do so, edit /etc/fstab and add the following line: /tmp /var/tmp none rw,nodev,noexec,nosuid,bind 0 0 See the mount(8) man page for further explanation of bind mounting. Having multiple locations for temporary storage is not required. Unless absolutely necessary to meet requirements, the storage location /var/tmp should be bind mounted to /tmp and thus share the same protections. unknown AC-6,AC-6(1),CM-6(a),CM-7(a),CM-7(b),MP-7 NaN 1.1.6 NaN Restrict Partition Mount Options
CCE-82141-3 Add noexec Option to /var/log noexec via /etc/fstab The noexec mount option can be used to prevent binaries from being executed out of /var/log. Add the noexec option to the fourth column of /etc/fstab for the line which controls mounting of /var/log. Allowing users to execute binaries from directories containing log files such as /var/log should never be necessary in normal operation and can expose the system to potential compromise. medium AC-6,AC-6(1),CM-6(a),CM-7(a),CM-7(b),MP-7 NaN NaN SRG-OS-000368-GPOS-00154 Restrict Partition Mount Options
CCE-26720-3 Add noexec Option to /tmp noexec via /etc/fstab The noexec mount option can be used to prevent binaries from being executed out of /tmp. Add the noexec option to the fourth column of /etc/fstab for the line which controls mounting of /tmp. Allowing users to execute binaries from world-writable directories such as /tmp should never be necessary in normal operation and can expose the system to potential compromise. unknown AC-6,AC-6(1),CM-6(a),CM-7(a),CM-7(b),MP-7 NaN NaN SRG-OS-999999 Restrict Partition Mount Options
CCE-26778-1 Add nodev Option to /dev/shm nodev via /etc/fstab The nodev mount option can be used to prevent creation of device files in /dev/shm. Legitimate character and block devices should not exist within temporary directories like /dev/shm. Add the nodev option to the fourth column of /etc/fstab for the line which controls mounting of /dev/shm. The only legitimate location for device files is the /dev directory located on the root partition. The only exception to this is chroot jails. medium AC-6,AC-6(1),CM-6(a),CM-7(a),CM-7(b),MP-7 NaN NaN SRG-OS-000368-GPOS-00154 Restrict Partition Mount Options
CCE-82149-6 Add noexec Option to /var/tmp noexec via /etc/fstab The noexec mount option can be used to prevent binaries from being executed out of /var/tmp. Add the noexec option to the fourth column of /etc/fstab for the line which controls mounting of /var/tmp. Allowing users to execute binaries from world-writable directories such as /var/tmp should never be necessary in normal operation and can expose the system to potential compromise. unknown NaN NaN NaN SRG-OS-000368-GPOS-00154 Restrict Partition Mount Options
CCE-26499-4 Add nodev Option to /tmp nodev via /etc/fstab The nodev mount option can be used to prevent device files from being created in /tmp. Legitimate character and block devices should not exist within temporary directories like /tmp. Add the nodev option to the fourth column of /etc/fstab for the line which controls mounting of /tmp. The only legitimate location for device files is the /dev directory located on the root partition. The only exception to this is chroot jails. unknown AC-6,AC-6(1),CM-6(a),CM-7(a),CM-7(b),MP-7 NaN NaN SRG-OS-000368-GPOS-00154 Restrict Partition Mount Options
CCE-27196-5 Add noexec Option to Removable Media Partitions noexec via /etc/fstab The noexec 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 noexec option to the fourth column of /etc/fstab for the line which controls mounting of any removable media partitions. Allowing users to execute binaries from removable media such as USB keys exposes the system to potential compromise. unknown AC-6,AC-6(1),CM-6(a),CM-7(a),CM-7(b),MP-7 NaN NaN SRG-OS-000035 Restrict Partition Mount Options
CCE-26486-1 Add nosuid Option to /dev/shm nosuid via /etc/fstab The nosuid mount option can be used to prevent execution of setuid programs in /dev/shm. The SUID and SGID permissions should not be required in these world-writable directories. Add the nosuid option to the fourth column of /etc/fstab for the line which controls mounting of /dev/shm. The presence of SUID and SGID executables should be tightly controlled. Users should not be able to execute SUID or SGID binaries from temporary storage partitions. medium AC-6,AC-6(1),CM-6(a),CM-7(a),CM-7(b),MP-7 NaN NaN SRG-OS-000368-GPOS-00154 Restrict Partition Mount Options
CCE-82145-4 Add noexec Option to /var/log/audit noexec via /etc/fstab The noexec mount option can be used to prevent binaries from being executed out of /var/log/audit. Add the noexec option to the fourth column of /etc/fstab for the line which controls mounting of /var/log/audit. Allowing users to execute binaries from directories containing audit log files such as /var/log/audit should never be necessary in normal operation and can expose the system to potential compromise. medium AC-6,AC-6(1),CM-6(a),CM-7(a),CM-7(b),MP-7 NaN NaN SRG-OS-000368-GPOS-00154 Restrict Partition Mount Options
CCE-82136-3 Add nodev Option to /boot nodev via /etc/fstab The nodev mount option can be used to prevent device files from being created in /boot. Legitimate character and block devices should exist only in the /dev directory on the root partition or within chroot jails built for system services. Add the nodev option to the fourth column of /etc/fstab for the line which controls mounting of /boot. The only legitimate location for device files is the /dev directory located on the root partition. The only exception to this is chroot jails. medium AC-6,AC-6(1),CM-6(a),CM-7(a),CM-7(b),MP-7 NaN NaN SRG-OS-000368-GPOS-00154 Restrict Partition Mount Options
CCE-82075-3 Add nodev Option to /var/log nodev via /etc/fstab The nodev mount option can be used to prevent device files from being created in /var/log. Legitimate character and block devices should exist only in the /dev directory on the root partition or within chroot jails built for system services. Add the nodev option to the fourth column of /etc/fstab for the line which controls mounting of /var/log. The only legitimate location for device files is the /dev directory located on the root partition. The only exception to this is chroot jails. medium AC-6,AC-6(1),CM-6(a),CM-7(a),CM-7(b),MP-7 NaN NaN SRG-OS-000368-GPOS-00154 Restrict Partition Mount Options
CCE-26860-7 Add nodev Option to Removable Media Partitions nodev via /etc/fstab The nodev mount option prevents files from being interpreted as character or block devices. Legitimate character and block devices should exist only in the /dev directory on the root partition or within chroot jails built for system services. Add the nodev option to the fourth column of /etc/fstab for the line which controls mounting of any removable media partitions. The only legitimate location for device files is the /dev directory located on the root partition. An exception to this is chroot jails, and it is not advised to set nodev on partitions which contain their root filesystems. low AC-6,AC-6(1),CM-6(a),CM-7(a),CM-7(b),MP-7 NaN NaN NaN Restrict Partition Mount Options
CCE-82137-1 Add nosuid Option to /boot nosuid via /etc/fstab The nosuid mount option can be used to prevent execution of setuid programs in /boot. The SUID and SGID permissions should not be required on the boot partition. Add the nosuid option to the fourth column of /etc/fstab for the line which controls mounting of /boot. The presence of SUID and SGID executables should be tightly controlled. Users should not be able to execute SUID or SGID binaries from boot partitions. medium AC-6,AC-6(1),CM-6(a),CM-7(a),CM-7(b),MP-7 NaN NaN SRG-OS-000368-GPOS-00154 Restrict Partition Mount Options
CCE-26622-1 Add noexec Option to /dev/shm noexec via /etc/fstab The noexec mount option can be used to prevent binaries from being executed out of /dev/shm. It can be dangerous to allow the execution of binaries from world-writable temporary storage directories such as /dev/shm. Add the noexec option to the fourth column of /etc/fstab for the line which controls mounting of /dev/shm. Allowing users to execute binaries from world-writable directories such as /dev/shm can expose the system to potential compromise. medium AC-6,AC-6(1),CM-6(a),CM-7(a),CM-7(b),MP-7 NaN NaN SRG-OS-000368-GPOS-00154 Restrict Partition Mount Options
CCE-82143-9 Add nosuid Option to /var/log nosuid via /etc/fstab The nosuid mount option can be used to prevent execution of setuid programs in /var/log. The SUID and SGID permissions should not be required in directories containing log files. Add the nosuid option to the fourth column of /etc/fstab for the line which controls mounting of /var/log. The presence of SUID and SGID executables should be tightly controlled. Users should not be able to execute SUID or SGID binaries from partitions designated for log files. medium AC-6,AC-6(1),CM-6(a),CM-7(a),CM-7(b),MP-7 NaN NaN SRG-OS-000368-GPOS-00154 Restrict Partition Mount Options
CCE-26762-5 Add nosuid Option to /tmp nosuid via /etc/fstab The nosuid mount option can be used to prevent execution of setuid programs in /tmp. The SUID and SGID permissions should not be required in these world-writable directories. Add the nosuid option to the fourth column of /etc/fstab for the line which controls mounting of /tmp. The presence of SUID and SGID executables should be tightly controlled. Users should not be able to execute SUID or SGID binaries from temporary storage partitions. unknown AC-6,AC-6(1),CM-6(a),CM-7(a),CM-7(b),MP-7 NaN NaN SRG-OS-000368-GPOS-00154 Restrict Partition Mount Options
CCE-27056-1 Add nosuid Option to Removable Media Partitions nosuid via /etc/fstab The nosuid mount option prevents set-user-identifier (SUID) and set-group-identifier (SGID) permissions from taking effect. These permissions allow users to execute binaries with the same permissions as the owner and group of the file respectively. Users should not be allowed to introduce SUID and SGID files into the system via partitions mounted from removeable media. Add the nosuid option to the fourth column of /etc/fstab for the line which controls mounting of any removable media partitions. The presence of SUID and SGID executables should be tightly controlled. Allowing users to introduce SUID or SGID binaries from partitions mounted off of removable media would allow them to introduce their own highly-privileged programs. medium AC-6,AC-6(1),CM-6(a),CM-7(a),CM-7(b),MP-7 NaN NaN SRG-OS-000480-GPOS-00227 Restrict Partition Mount Options
CCE-82063-9 Add nodev Option to /var nodev via /etc/fstab The nodev mount option can be used to prevent device files from being created in /var. Legitimate character and block devices should exist only in the /dev directory on the root partition or within chroot jails built for system services. Add the nodev option to the fourth column of /etc/fstab for the line which controls mounting of /var. The only legitimate location for device files is the /dev directory located on the root partition. The only exception to this is chroot jails. medium AC-6,AC-6(1),CM-6(a),CM-7(a),CM-7(b),MP-7 NaN NaN SRG-OS-000368-GPOS-00154 Restrict Partition Mount Options
CCE-82152-0 Add nosuid Option to /var/tmp nosuid via /etc/fstab The nosuid mount option can be used to prevent execution of setuid programs in /var/tmp. The SUID and SGID permissions should not be required in these world-writable directories. Add the nosuid option to the fourth column of /etc/fstab for the line which controls mounting of /var/tmp. The presence of SUID and SGID executables should be tightly controlled. Users should not be able to execute SUID or SGID binaries from temporary storage partitions. unknown NaN NaN NaN SRG-OS-000368-GPOS-00154 Restrict Partition Mount Options
CCE-27045-4 Add nodev Option to Non-Root Local Partitions nodev via /etc/fstab The nodev mount option prevents files from being interpreted as character or block devices. Legitimate character and block devices should exist only in the /dev directory on the root partition or within chroot jails built for system services. Add the nodev option to the fourth column of /etc/fstab for the line which controls mounting of any non-root local partitions. The nodev mount option prevents files from being interpreted as character or block devices. The only legitimate location for device files is the /dev directory located on the root partition. The only exception to this is chroot jails, for which it is not advised to set nodev on these filesystems. unknown AC-6,AC-6(1),CM-6(a),CM-7(a),CM-7(b),MP-7 NaN 1.1.11 SRG-OS-000368-GPOS-00154 Restrict Partition Mount Options
CCE-26976-1 Disable the Automounter disable via chkconfig The autofs 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 /misc/cd. 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 /etc/fstab rather than relying on the automounter. The autofs service can be disabled with the following command: $ sudo chkconfig autofs off Disabling the automounter permits the administrator to statically control filesystem mounting through /etc/fstab. Additionally, automatically mounting filesystems permits easy introduction of unknown devices, thereby facilitating malicious activity. medium CM-6(a),CM-7(a),CM-7(b),MP-7 NaN NaN SRG-OS-999999 Restrict Dynamic Mounting and Unmounting of Filesystems
CCE-82167-8 Disable Mounting of vFAT filesystems disable via modprobe.d To configure the system to prevent the vfat kernel module from being loaded, add the following line to a file in the directory /etc/modprobe.d: install vfat /bin/true This effectively prevents usage of this uncommon filesystem. The vFAT filesystem format is primarily used on older windows systems and portable USB drives or flash modules. It comes in three types FAT12, FAT16, and FAT32 all of which are supported by the vfat kernel module. Removing support for unneeded filesystems reduces the local attack surface of the system. low CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Restrict Dynamic Mounting and Unmounting of Filesystems
CCE-26340-0 Disable Mounting of cramfs disable via modprobe.d To configure the system to prevent the cramfs kernel module from being loaded, add the following line to a file in the directory /etc/modprobe.d: install cramfs /bin/true This effectively prevents usage of this uncommon filesystem. The cramfs filesystem type is a compressed read-only Linux filesystem embedded in small footprint systems. A cramfs image can be used without having to first decompress the image. Removing support for unneeded filesystem types reduces the local attack surface of the server. low CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-000095-GPOS-00049 Restrict Dynamic Mounting and Unmounting of Filesystems
CCE-26544-7 Disable Mounting of freevxfs disable via modprobe.d To configure the system to prevent the freevxfs kernel module from being loaded, add the following line to a file in the directory /etc/modprobe.d: install freevxfs /bin/true This effectively prevents usage of this uncommon filesystem. Linux kernel modules which implement filesystems that are not needed by the local system should be disabled. low CM-6(a),CM-7(a),CM-7(b) NaN 1.1.1.2 NaN Restrict Dynamic Mounting and Unmounting of Filesystems
CCE-26404-4 Disable Mounting of squashfs disable via modprobe.d To configure the system to prevent the squashfs kernel module from being loaded, add the following line to a file in the directory /etc/modprobe.d: install squashfs /bin/true This effectively prevents usage of this uncommon filesystem. The squashfs filesystem type is a compressed read-only Linux filesystem embedded in small footprint systems (similar to cramfs). A squashfs image can be used without having to first decompress the image. Removing support for unneeded filesystem types reduces the local attack surface of the system. low CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Restrict Dynamic Mounting and Unmounting of Filesystems
CCE-26800-3 Disable Mounting of hfs disable via modprobe.d To configure the system to prevent the hfs kernel module from being loaded, add the following line to a file in the directory /etc/modprobe.d: install hfs /bin/true This effectively prevents usage of this uncommon filesystem. Linux kernel modules which implement filesystems that are not needed by the local system should be disabled. low CM-6(a),CM-7(a),CM-7(b) NaN 1.1.1.4 NaN Restrict Dynamic Mounting and Unmounting of Filesystems
CCE-26670-0 Disable Mounting of jffs2 disable via modprobe.d To configure the system to prevent the jffs2 kernel module from being loaded, add the following line to a file in the directory /etc/modprobe.d: install jffs2 /bin/true This effectively prevents usage of this uncommon filesystem. Linux kernel modules which implement filesystems that are not needed by the local system should be disabled. low CM-6(a),CM-7(a),CM-7(b) NaN 1.1.1.3 NaN Restrict Dynamic Mounting and Unmounting of Filesystems
CCE-26923-3 Disable Booting from USB Devices in Boot Firmware disable via BIOS Configure the system boot firmware (historically called BIOS on PC systems) to disallow booting from USB drives. Booting a system from a USB device would allow an attacker to circumvent any security measures provided by the operating system. Attackers could mount partitions and modify the configuration of the OS. unknown CM-6(a),CM-7(b),MP-7 NaN NaN NaN Restrict Dynamic Mounting and Unmounting of Filesystems
CCE-27016-5 Disable Modprobe Loading of USB Storage Driver disable via modprobe.d 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 usb-storage kernel module from being loaded, add the following line to a file in the directory /etc/modprobe.d: install usb-storage /bin/true This will prevent the modprobe program from loading the usb-storage module, but will not prevent an administrator (or another program) from using the insmod program to load the module manually. USB storage devices such as thumb drives can be used to introduce malicious software. medium CM-6(a),CM-7(a),CM-7(b),MP-7 NaN NaN SRG-OS-000273 Restrict Dynamic Mounting and Unmounting of Filesystems
CCE-27011-6 Disable Kernel Support for USB via Bootloader Configuration disable via grub All USB support can be disabled by adding the nousb argument to the kernel's boot loader configuration. To do so, append "nousb" to the kernel line in /etc/grub.conf as shown: kernel /vmlinuz-VERSION ro vga=ext root=/dev/VolGroup00/LogVol00 rhgb quiet nousb Disabling the USB subsystem within the Linux kernel at system boot will protect against potentially malicious USB devices, although it is only practical in specialized systems. unknown CM-6(a),MP-7 NaN NaN NaN Restrict Dynamic Mounting and Unmounting of Filesystems
CCE-26361-6 Disable Mounting of hfsplus disable via modprobe.d To configure the system to prevent the hfsplus kernel module from being loaded, add the following line to a file in the directory /etc/modprobe.d: install hfsplus /bin/true This effectively prevents usage of this uncommon filesystem. Linux kernel modules which implement filesystems that are not needed by the local system should be disabled. low CM-6(a),CM-7(a),CM-7(b) NaN 1.1.1.5 NaN Restrict Dynamic Mounting and Unmounting of Filesystems
CCE-27131-2 Assign Password to Prevent Changes to Boot Firmware Configuration enable via BIOS Assign a password to the system boot firmware (historically called BIOS on PC systems) to require a password for any configuration changes. Assigning a password to the system boot firmware prevents anyone with physical access from configuring the system to boot from local media and circumvent the operating system's access controls. For systems in physically secure locations, such as a data center or Sensitive Compartmented Information Facility (SCIF), this risk must be weighed against the risk of administrative personnel being unable to conduct recovery operations in a timely fashion. unknown NaN NaN NaN NaN Restrict Dynamic Mounting and Unmounting of Filesystems
CCE-26677-5 Disable Mounting of udf disable via modprobe.d To configure the system to prevent the udf kernel module from being loaded, add the following line to a file in the directory /etc/modprobe.d: install udf /bin/true This effectively prevents usage of this uncommon filesystem. The udf filesystem type is the universal disk format used to implement the ISO/IEC 13346 and ECMA-167 specifications. This is an open vendor filesystem type for data storage on a broad range of media. This filesystem type is neccessary to support writing DVDs and newer optical disc formats. Removing support for unneeded filesystem types reduces the local attack surface of the system. low CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Restrict Dynamic Mounting and Unmounting of Filesystems
CCE-81028-3 Enable Kernel Parameter to Enforce DAC on Symlinks enable via sysctl To set the runtime status of the fs.protected_symlinks kernel parameter, run the following command: $ sudo sysctl -w fs.protected_symlinks=1 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: fs.protected_symlinks = 1 By enabling this kernel parameter, symbolic links are permitted to be followed only when outside a sticky world-writable directory, or when the UID of the link and follower match, or when the directory owner matches the symlink's owner. Disallowing such symlinks helps mitigate vulnerabilities based on insecure file system accessed by privileged programs, avoiding an exploitation vector exploiting unsafe use of open() or creat(). unknown AC-6(1),CM-6(a) NaN 1.6.1 SRG-OS-000324-GPOS-00125 Verify Permissions on Important Files and Directories
CCE-26642-9 Ensure All World-Writable Directories Are Owned by a System Account verify via chmod 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. 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. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-999999 Verify Permissions on Important Files and Directories
CCE-26910-0 Ensure No World-Writable Files Exist go-w via chmod 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. Finally, this applies to real files and not virtual files that are a part of pseudo file systems such as sysfs or procfs. 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. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-999999 Verify Permissions on Important Files and Directories
CCE-26497-8 Ensure All SUID Executables Are Authorized verify via chmod The SUID (set user id) bit should be set only on files that were installed via authorized means. A straightforward means of identifying unauthorized SUID files is determine if any were not installed as part of an RPM package, which is cryptographically verified. Investigate the origin of any unpackaged SUID files. This configuration check considers authorized SUID files which were installed via RPM. It is assumed that when an individual has sudo access to install an RPM and all packages are signed with an organizationally-recognized GPG key, the software should be considered an approved package on the system. Any SUID file not deployed through an RPM will be flagged for further review. Executable files with the SUID permission run with the privileges of the owner of the file. SUID files of uncertain provenance could allow for unprivileged users to elevate privileges. The presence of these files should be strictly controlled on the system. medium AC-6(1),CM-6(a) NaN NaN NaN Verify Permissions on Important Files and Directories
CCE-81025-9 Enable Kernel Parameter to Enforce DAC on Hardlinks enable via sysctl To set the runtime status of the fs.protected_hardlinks kernel parameter, run the following command: $ sudo sysctl -w fs.protected_hardlinks=1 To make sure that the setting is persistent, add the following line to a file in the directory /etc/sysctl.d: fs.protected_hardlinks = 1 By enabling this kernel parameter, users can no longer create soft or hard links to files which they do not own. Disallowing such hardlinks mitigate vulnerabilities based on insecure file system accessed by privileged programs, avoiding an exploitation vector exploiting unsafe use of open() or creat(). unknown AC-6(1),CM-6(a) NaN 1.6.1 SRG-OS-000324-GPOS-00125 Verify Permissions on Important Files and Directories
CCE-26872-2 Ensure All Files Are Owned by a Group verify via chgrp 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. 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. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 Verify Permissions on Important Files and Directories
CCE-27032-2 Ensure All Files Are Owned by a User verify via chown 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. 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. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 Verify Permissions on Important Files and Directories
CCE-26840-9 Verify that All World-Writable Directories Have Sticky Bits Set +t via chmod When the so-called 'sticky bit' 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'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's documentation instead of blindly changing modes. To set the sticky bit on a world-writable directory DIR, run the following command: $ sudo chmod +t DIR Failing to set the sticky bit on public directories allows unauthorized users to delete files in the directory structure. 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 /tmp), and for directories requiring global read/write access. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-999999 Verify Permissions on Important Files and Directories
CCE-26769-0 Ensure All SGID Executables Are Authorized verify via rpm The SGID (set group id) bit should be set only on files that were installed via authorized means. A straightforward means of identifying unauthorized SGID files is determine if any were not installed as part of an RPM package, which is cryptographically verified. Investigate the origin of any unpackaged SGID files. This configuration check considers authorized SGID files which were installed via RPM. It is assumed that when an individual has sudo access to install an RPM and all packages are signed with an organizationally-recognized GPG key, the software should be considered an approved package on the system. Any SGID file not deployed through an RPM will be flagged for further review. Executable files with the SGID permission run with the privileges of the owner of the file. SGID files of uncertain provenance could allow for unprivileged users to elevate privileges. The presence of these files should be strictly controlled on the system. medium AC-6(1),CM-6(a) NaN NaN NaN Verify Permissions on Important Files and Directories
CCE-26954-8 Verify Permissions on group File 644 via chmod To properly set the permissions of /etc/passwd, run the command: $ sudo chmod 0644 /etc/passwd The /etc/group file contains information regarding groups that are configured on the system. Protection of this file is important for system security. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-999999 Verify Permissions on Files with Local Account Information and Credentials
CCE-26992-8 Verify Permissions on shadow File 0 via chmod To properly set the permissions of /etc/shadow, run the command: $ sudo chmod 0000 /etc/shadow The /etc/shadow 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. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-999999 Verify Permissions on Files with Local Account Information and Credentials
CCE-26967-0 Verify Group Who Owns shadow File root via chgrp To properly set the group owner of /etc/shadow, run the command: $ sudo chgrp root /etc/shadow The /etc/shadow file stores password hashes. Protection of this file is critical for system security. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-999999 Verify Permissions on Files with Local Account Information and Credentials
CCE-26975-3 Verify Group Who Owns gshadow File root via chgrp To properly set the group owner of /etc/gshadow, run the command: $ sudo chgrp root /etc/gshadow The /etc/gshadow file contains group password hashes. Protection of this file is critical for system security. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-999999 Verify Permissions on Files with Local Account Information and Credentials
CCE-26953-0 Verify User Who Owns passwd File root via chown To properly set the owner of /etc/passwd, run the command: $ sudo chown root /etc/passwd The /etc/passwd file contains information about the users that are configured on the system. Protection of this file is critical for system security. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-999999 Verify Permissions on Files with Local Account Information and Credentials
CCE-26868-0 Verify Permissions on passwd File 644 via chmod To properly set the permissions of /etc/passwd, run the command: $ sudo chmod 0644 /etc/passwd If the /etc/passwd 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. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-999999 Verify Permissions on Files with Local Account Information and Credentials
CCE-26822-7 Verify User Who Owns group File root via chown To properly set the owner of /etc/group, run the command: $ sudo chown root /etc/group The /etc/group file contains information regarding groups that are configured on the system. Protection of this file is important for system security. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-999999 Verify Permissions on Files with Local Account Information and Credentials
CCE-26856-5 Verify Group Who Owns passwd File root via chgrp To properly set the group owner of /etc/passwd, run the command: $ sudo chgrp root /etc/passwd The /etc/passwd file contains information about the users that are configured on the system. Protection of this file is critical for system security. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-999999 Verify Permissions on Files with Local Account Information and Credentials
CCE-27026-4 Verify User Who Owns gshadow File root via chown To properly set the owner of /etc/gshadow, run the command: $ sudo chown root /etc/gshadow The /etc/gshadow file contains group password hashes. Protection of this file is critical for system security. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-999999 Verify Permissions on Files with Local Account Information and Credentials
CCE-26930-8 Verify Group Who Owns group File root via chgrp To properly set the group owner of /etc/group, run the command: $ sudo chgrp root /etc/group The /etc/group file contains information regarding groups that are configured on the system. Protection of this file is important for system security. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-999999 Verify Permissions on Files with Local Account Information and Credentials
CCE-26947-2 Verify User Who Owns shadow File root via chown To properly set the owner of /etc/shadow, run the command: $ sudo chown root /etc/shadow The /etc/shadow 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. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-999999 Verify Permissions on Files with Local Account Information and Credentials
CCE-26951-4 Verify Permissions on gshadow File 0 via chmod To properly set the permissions of /etc/gshadow, run the command: $ sudo chmod 0000 /etc/gshadow The /etc/gshadow file contains group password hashes. Protection of this file is critical for system security. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-999999 Verify Permissions on Files with Local Account Information and Credentials
CCE-27289-8 Verify that System Executables Have Restrictive Permissions go-w via chmod System executables are stored in the following directories by default: /bin /sbin /usr/bin /usr/libexec /usr/local/bin /usr/local/sbin /usr/sbin All files in these directories should not be group-writable or world-writable. If any file FILE in these directories is found to be group-writable or world-writable, correct its permission with the following command: $ sudo chmod go-w FILE 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. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000259 Verify File Permissions Within Some Important Directories
CCE-27424-1 Verify that Shared Library Files Have Root Ownership root via chown 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: /lib /lib64 /usr/lib /usr/lib64 Kernel modules, which can be added to the kernel during runtime, are also stored in /lib/modules. All files in these directories should be owned by the root 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: $ sudo chown root FILE 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. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000259 Verify File Permissions Within Some Important Directories
CCE-27381-3 Verify that Shared Library Files Have Restrictive Permissions go-w via chmod 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: /lib /lib64 /usr/lib /usr/lib64 Kernel modules, which can be added to the kernel during runtime, are stored in /lib/modules. 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: $ sudo chmod go-w FILE 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. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000259 Verify File Permissions Within Some Important Directories
CCE-27623-8 Verify that System Executables Have Root Ownership root via chown System executables are stored in the following directories by default: /bin /sbin /usr/bin /usr/libexec /usr/local/bin /usr/local/sbin /usr/sbin All files in these directories should be owned by the root user. If any file FILE in these directories is found to be owned by a user other than root, correct its ownership with the following command: $ sudo chown root FILE 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. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000259 Verify File Permissions Within Some Important Directories
CCE-26995-1 Verify /etc/grub.conf User Ownership root via grub.conf The file /etc/grub.conf should be owned by the root user to prevent destruction or modification of the file. To properly set the owner of /etc/grub.conf, run the command: $ sudo chown root /etc/grub.conf Only root should be able to modify important boot parameters. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-999999 Set Boot Loader Password
CCE-26911-8 Set Boot Loader Password in grub.conf configure via grub-crypt 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: $ grub-crypt --sha-512 When prompted to enter a password, insert the following line into /etc/grub.conf immediately after the header comments. (Use the output from grub-crypt as the value of password-hash): password --encrypted password-hash NOTE: To meet FISMA Moderate, the bootloader password MUST differ from the root password. 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. medium CM-6(a) NaN NaN SRG-OS-000080 Set Boot Loader Password
CCE-26949-8 Verify /boot/grub/grub.conf Permissions 600 via grub.conf File permissions for /boot/grub/grub.conf should be set to 600, which is the default. To properly set the permissions of /boot/grub/grub.conf, run the command: $ sudo chmod 600 /boot/grub/grub.conf Proper permissions ensure that only the root user can modify important boot parameters. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-999999 Set Boot Loader Password
CCE-27022-3 Verify /etc/grub.conf Group Ownership root via grub.conf The file /etc/grub.conf should be group-owned by the root group to prevent destruction or modification of the file. To properly set the group owner of /etc/grub.conf, run the command: $ sudo chgrp root /etc/grub.conf The root group is a highly-privileged group. Furthermore, the group-owner of this file should not have any access privileges anyway. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-999999 Set Boot Loader Password
CCE-26809-4 Ensure rsyslog is Installed install via yum Rsyslog is installed by default. The rsyslog package can be installed with the following command: $ sudo yum install rsyslog The rsyslog package provides the rsyslog daemon, which provides system logging services. medium CM-6(a) NaN NaN SRG-OS-000051-GPOS-00024,SRG-OS-000479-GPOS-00224 Configure Syslog
CCE-26807-8 Enable rsyslog Service enable via chkconfig The rsyslog service provides syslog-style logging by default on Red Hat Enterprise Linux 6. The rsyslog service can be enabled with the following command: $ sudo chkconfig --level 2345 rsyslog on The rsyslog service must be running in order to provide logging services, which are essential to system administration. medium AU-4(1),CM-6(a) NaN NaN NaN Configure Syslog
CCE-27162-7 Disable Logwatch on Clients if a Logserver Exists disable via rm Does your site have a central logserver which has been configured to report on logs received from all systems? If so: $ sudo rm /etc/cron.daily/0logwatch If no logserver exists, it will be necessary for each system to run Logwatch individually. Using a central logserver provides the security and reliability benefits discussed earlier, and also makes monitoring logs easier and less time-intensive for administrators. NaN unknown NaN NaN NaN NaN Configure Syslog
CCE-27014-0 Ensure Logrotate Runs Periodically daily via logrotate The logrotate utility allows for the automatic rotation of log files. The frequency of rotation is specified in /etc/logrotate.conf, which triggers a cron task. To configure logrotate to run daily, add or correct the following line in /etc/logrotate.conf: # rotate log files frequency daily 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. medium CM-6(a) NaN NaN SRG-OS-999999 Ensure All Logs are Rotated by logrotate
CCE-27235-1 Enable rsyslog to Accept Messages via TCP, if Acting As Log Server enable via /etc/rsyslog.conf The rsyslog daemon should not accept remote messages unless the system acts as a log server. If the system needs to act as a central log server, add the following lines to /etc/rsyslog.conf to enable reception of messages over TCP: $ModLoad imtcp $InputTCPServerRun 514 If the system needs to act as a log server, this ensures that it can receive messages over a reliable TCP connection. unknown AU-6(3),AU-6(4),CM-6(a) NaN 4.2.1.5 NaN Configure rsyslogd to Accept Remote Messages If Acting as a Log Server
CCE-27236-9 Enable rsyslog to Accept Messages via UDP, if Acting As Log Server enable via /etc/rsyslog.conf The rsyslog daemon should not accept remote messages unless the system acts as a log server. If the system needs to act as a central log server, add the following lines to /etc/rsyslog.conf to enable reception of messages over UDP: $ModLoad imudp $UDPServerRun 514 Many devices, such as switches, routers, and other Unix-like systems, may only support the traditional syslog transmission over UDP. If the system must act as a log server, this enables it to receive their messages as well. unknown AU-6(3),AU-6(4),CM-6(a) NaN 4.2.1.5 NaN Configure rsyslogd to Accept Remote Messages If Acting as a Log Server
CCE-26803-7 Ensure rsyslog Does Not Accept Remote Messages Unless Acting As Log Server disable via /etc/rsyslog.conf The rsyslog daemon should not accept remote messages unless the system acts as a log server. To ensure that it is not listening on the network, ensure the following lines are not found in /etc/rsyslog.conf: $ModLoad imtcp $InputTCPServerRun port $ModLoad imudp $UDPServerRun port $ModLoad imrelp $InputRELPServerRun port Any process which receives messages from the network incurs some risk of receiving malicious messages. This risk can be eliminated for rsyslog by configuring it not to listen on the network. medium CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-000480-GPOS-00227 Configure rsyslogd to Accept Remote Messages If Acting as a Log Server
CCE-27069-4 Configure Logwatch SplitHosts Line yes via /etc/rsyslog.conf If SplitHosts is set, Logwatch will separate entries by hostname. This makes the report longer but significantly more usable. If it is not set, then Logwatch will not report which host generated a given log entry, and that information is almost always necessary SplitHosts = yes NaN unknown NaN NaN NaN NaN Configure Logwatch on the Central Log Server
CCE-27197-3 Configure Logwatch HostLimit Line no via /etc/rsyslog.conf On a central logserver, you want Logwatch to summarize all syslog entries, including those which did not originate on the logserver itself. The HostLimit setting tells Logwatch to report on all hosts, not just the one on which it is running. HostLimit = no NaN unknown NaN NaN NaN NaN Configure Logwatch on the Central Log Server
CCE-26801-1 Ensure Logs Sent To Remote Host enable via /etc/rsyslog.conf To configure rsyslog to send logs to a remote log server, open /etc/rsyslog.conf 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 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. To use UDP for log message delivery: *.* @ To use TCP for log message delivery: *.* @@ To use RELP for log message delivery: *.* :omrelp: There must be a resolvable DNS CNAME or Alias record set to "" for logs to be sent correctly to the centralized logging utility. 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. medium AU-4(1),AU-9(2),CM-6(a) FAU_GEN.1.1.c NaN SRG-OS-000043,SRG-OS-000215 Rsyslog Logs Sent To Remote Host
CCE-27190-8 Ensure System Log Files Have Correct Permissions 600 via chmod The file permissions for all log files written by rsyslog should be set to 600, or more restrictive. These log files are determined by the second part of each Rule line in /etc/rsyslog.conf and typically all appear in /var/log. For each log file LOGFILE referenced in /etc/rsyslog.conf, run the following command to inspect the file's permissions: $ ls -l LOGFILE If the permissions are not 600 or more restrictive, run the following command to correct this: $ sudo chmod 0600 LOGFILE" 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. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000206 Ensure Proper Configuration of Log Files
CCE-26812-8 Ensure Log Files Are Owned By Appropriate User ensure via chmod The owner of all log files written by rsyslog should be . These log files are determined by the second part of each Rule line in /etc/rsyslog.conf and typically all appear in /var/log. For each log file LOGFILE referenced in /etc/rsyslog.conf, run the following command to inspect the file's owner: $ ls -l LOGFILE If the owner is not , run the following command to correct this: $ sudo chown LOGFILE 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. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000206 Ensure Proper Configuration of Log Files
CCE-26821-9 Ensure Log Files Are Owned By Appropriate Group ensure via chgrp The group-owner of all log files written by rsyslog should be . These log files are determined by the second part of each Rule line in /etc/rsyslog.conf and typically all appear in /var/log. For each log file LOGFILE referenced in /etc/rsyslog.conf, run the following command to inspect the file's group owner: $ ls -l LOGFILE If the owner is not , run the following command to correct this: $ sudo chgrp LOGFILE 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. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000206 Ensure Proper Configuration of Log Files
CCE-82978-8 Install policycoreutils Package install via yum The policycoreutils package can be installed with the following command: $ sudo yum install policycoreutils Security-enhanced Linux is a feature of the Linux kernel and a number of utilities with enhanced security functionality designed to add mandatory access controls to Linux. The Security-enhanced Linux kernel contains new architectural components originally developed to improve security of the Flask operating system. These architectural components provide general support for the enforcement of many kinds of mandatory access control policies, including those based on the concepts of Type Enforcement, Role-based Access Control, and Multi-level Security. policycoreutils contains the policy core utilities that are required for basic operation of an SELinux-enabled system. These utilities include load_policy to load SELinux policies, setfiles to label filesystems, newrole to switch roles, and run_init to run /etc/init.d scripts in the proper context. high NaN NaN NaN SRG-OS-000480-GPOS-00227 SELinux
CCE-27421-7 Uninstall setroubleshoot Package remove via yum The SETroubleshoot service notifies desktop users of SELinux denials. The service provides information around configuration errors, unauthorized intrusions, and other potential errors. The setroubleshoot package can be removed with the following command: $ sudo yum erase setroubleshoot The SETroubleshoot service is an unnecessary daemon to have running on a server, especially if X Windows is removed or disabled. low NaN NaN NaN NaN SELinux
CCE-27404-3 Uninstall mcstrans Package remove via yum The mcstransd daemon provides category label information to client processes requesting information. The label translations are defined in /etc/selinux/targeted/setrans.conf. The mcstrans package can be removed with the following command: $ sudo yum erase mcstrans Since this service is not used very often, disable it to reduce the amount of potentially vulnerable code running on the system. NOTE: This rule was added in support of the CIS RHEL6 v1.2.0 benchmark. Please note that Red Hat does not feel this rule is security relevant. low NaN NaN NaN NaN SELinux
CCE-26991-0 Enable the SELinux Context Restoration Service (restorecond) enable via chkconfig The restorecond service utilizes inotify to look for the creation of new files listed in the /etc/selinux/restorecond.conf configuration file. When a file is created, restorecond ensures the file receives the proper SELinux security context. The restorecond service can be enabled with the following command: $ sudo chkconfig --level 2345 restorecond on The restorecond service helps ensure that the default SELinux file context is applied to files. This allows automatic correction of file contexts created by some programs. unknown AC-3(3)(a),AC-6,CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN SELinux
CCE-26875-5 Configure SELinux Policy targeted via /etc/selinux/config The SELinux targeted 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 /etc/selinux/config: SELINUXTYPE= Other policies, such as mls, provide additional security labeling and greater confinement but are not compatible with many general-purpose use cases. Setting the SELinux policy to targeted 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. Note: During the development or debugging of SELinux modules, it is common to temporarily place non-production systems in permissive mode. In such temporary cases, SELinux policies should be developed, and once work is completed, the system should be reconfigured to . high AC-3,AC-3(3)(a),AU-9,SC-7(21) NaN NaN SRG-OS-999999 SELinux
CCE-26969-6 Ensure SELinux State is Enforcing enforcing via /etc/selinux/config The SELinux state should be set to at system boot time. In the file /etc/selinux/config, add or correct the following line to configure the system to boot into enforcing mode: SELINUX= 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. high AC-3,AC-3(3)(a),AU-9,SC-7(21) NaN NaN SRG-OS-999999 SELinux
CCE-27111-4 Ensure No Daemons are Unconfined by SELinux ensure via ps Daemons for which the SELinux policy does not contain rules will inherit the context of the parent process. Because daemons are launched during startup and descend from the init process, they inherit the initrc_t context. To check for unconfined daemons, run the following command: $ sudo ps -eZ | egrep "initrc" | egrep -vw "tr|ps|egrep|bash|awk" | tr ':' ' ' | awk '{ print $NF }' It should produce no output in a well-configured system. Daemons which run with the initrc_t context may cause AVC denials, or allow privileges that the daemon does not require. medium AC-3(3)(a),AC-6,CM-6(a),CM-7(a),CM-7(b) NaN 1.7.1.5 NaN SELinux
CCE-26774-0 Ensure No Device Files are Unlabeled by SELinux ensure via find 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 device_t or unlabeled_t, report the bug so that policy can be corrected. Supply information about what the device is and what programs use it. To check for incorrectly labeled device files, run following commands: $ sudo find /dev -context *:device_t:* \( -type c -o -type b \) -printf "%p %Z\n" $ sudo find /dev -context *:unlabeled_t:* \( -type c -o -type b \) -printf "%p %Z\n" It should produce no output in a well-configured system. If a device file carries the SELinux type device_t or unlabeled_t, then SELinux cannot properly restrict access to the device file. medium AC-3(3)(a),AC-6,CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-999999 SELinux
CCE-26956-3 Ensure SELinux Not Disabled in /etc/grub.conf enable via grub SELinux can be disabled at boot time by an argument in /etc/grub.conf. Remove any instances of selinux=0 from the kernel arguments in that file to prevent SELinux from being disabled at boot. 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. medium AC-3,AC-3(3)(a) NaN NaN NaN SELinux
CCE-82750-1 Remove the FreeRadius Server Package remove via yum The freeradius package should be removed if not in use. Is this system a RADIUS server? If not, remove the package. The freeradius package can be removed with the following command: $ sudo yum erase freeradius The freeradius RPM is not installed by default on a Red Hat Enterprise Linux 6 system. It is needed only by the RADIUS servers, not by the clients which use RADIUS for authentication. If the system is not intended for use as a RADIUS Server it should be removed. Unnecessary packages should not be installed to decrease the attack surface of the system. While this software is clearly essential on a RADIUS server, it is not necessary on typical desktop or workstation systems. low NaN NaN NaN NaN Remote Authentication Dial-In User Service (RADIUS)
CCE-82402-9 Install the psacct package enable via yum The process accounting service, psacct, works with programs including acct and ac to allow system administrators to view user activity, such as commands issued by users of the system. The psacct package can be installed with the following command: $ sudo yum install psacct The psacct service can provide administrators a convenient view into some user activities. However, it should be noted that the auditing system and its audit records provide more authoritative and comprehensive records. low AU-12(a),CM-6(a) NaN NaN NaN Base Services
CCE-26990-2 Enable IRQ Balance (irqbalance) enable via chkconfig The irqbalance service optimizes the balance between power savings and performance through distribution of hardware interrupts across multiple processors. The irqbalance service can be enabled with the following command: $ sudo chkconfig --level 2345 irqbalance on In an environment with multiple processors (now common), the irqbalance service provides potential speedups for handling interrupt requests. low CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Base Services
CCE-27259-1 Enable Process Accounting (psacct) enable via chkconfig The process accounting service, psacct, works with programs including acct and ac to allow system administrators to view user activity, such as commands issued by users of the system. The psacct service can be enabled with the following command: $ sudo chkconfig --level 2345 psacct on The psacct service can provide administrators a convenient view into some user activities. However, it should be noted that the auditing system and its audit records provide more authoritative and comprehensive records. low AU-12(a),CM-6(a) NaN NaN NaN Base Services
CCE-27257-5 Disable Odd Job Daemon (oddjobd) disable via chkconfig The oddjobd service exists to provide an interface and access control mechanism through which specified privileged tasks can run tasks for unprivileged client applications. Communication with oddjobd through the system message bus. The oddjobd service can be disabled with the following command: $ sudo chkconfig oddjobd off The oddjobd 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. medium CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-000096 Base Services
CCE-26973-8 Disable CPU Speed (cpuspeed) disable via chkconfig The cpuspeed service can adjust the clock speed of supported CPUs based upon the current processing load thereby conserving power and reducing heat. The cpuspeed service can be disabled with the following command: $ sudo chkconfig cpuspeed off The cpuspeed service is only necessary if adjusting the CPU clock speed provides benefit. Traditionally this has included laptops (to enhance battery life), but may also apply to server or desktop environments where conserving power is highly desirable or necessary. low CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Base Services
CCE-27261-7 Disable Network Router Discovery Daemon (rdisc) disable via chkconfig The rdisc 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 rdisc service can be disabled with the following command: $ sudo chkconfig rdisc off 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. medium AC-4,CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-000096 Base Services
CCE-26853-2 Disable SMART Disk Monitoring Service (smartd) disable via chkconfig SMART (Self-Monitoring, Analysis, and Reporting Technology) is a feature of hard drives that allows them to detect symptoms of disk failure and relay an appropriate warning. The smartd service can be disabled with the following command: $ sudo chkconfig smartd off SMART can help ensure availability of systems by notifying system operators of failing hardware. Nevertheless, if it is not needed or the system's drives are not SMART-capable (such as solid state drives), this service can be disabled. low CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Base Services
CCE-26850-8 Disable KDump Kernel Crash Analyzer (kdump) disable via chkconfig The kdump service provides a kernel crash dump analyzer. It uses the kexec system call to boot a secondary kernel ("capture" kernel) following a system crash, which can load information from the crashed kernel for analysis. The kdump service can be disabled with the following command: $ sudo chkconfig kdump off Kernel core dumps may contain the full contents of system memory at the time of the crash. Kernel core dumps consume a considerable amount of disk space and may result in denial of service by exhausting the available space on the target file system partition. Unless the system is used for kernel development or testing, there is little need to run the kdump service. medium CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-000480-GPOS-00227 Base Services
CCE-27193-2 Disable Software RAID Monitor (mdmonitor) disable via chkconfig The mdmonitor service is used for monitoring a software RAID array; hardware RAID setups do not use this service. The mdmonitor service can be disabled with the following command: $ sudo chkconfig mdmonitor off If software RAID monitoring is not required, there is no need to run this service. low CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Base Services
CCE-27262-5 Disable Red Hat Subscription Manager Daemon (rhsmcertd) disable via chkconfig The Red Hat Subscription Manager (rhsmcertd) periodically checks for changes in the entitlement certificates for a registered system and updates it accordingly. The rhsmcertd service can be disabled with the following command: $ sudo chkconfig rhsmcertd off The rhsmcertd service can provide administrators with some additional control over which of their systems are entitled to particular subscriptions. However, for systems that are managed locally or which are not expected to require remote changes to their subscription status, it is unnecessary and can be disabled. low CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Base Services
CCE-27265-8 Disable System Statistics Reset Service (sysstat) disable via chkconfig The sysstat service resets various I/O and CPU performance statistics to zero in order to begin counting from a fresh state at boot time. The sysstat service can be disabled with the following command: $ sudo chkconfig sysstat off By default the sysstat service runs a program at boot to reset performance statistics. This data can be retrieved using programs such as sar and sadc. While the sysstat service may provide useful insight into system operation, through the lens of providing only essential system services, this service should be disabled. low CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Base Services
CCE-27263-3 Disable Cyrus SASL Authentication Daemon (saslauthd) disable via chkconfig The saslauthd service handles plaintext authentication requests on behalf of the SASL library. The service isolates all code requiring superuser privileges for SASL authentication into a single process, and can also be used to provide proxy authentication services to clients that do not understand SASL based authentication. The saslauthd service can be disabled with the following command: $ sudo chkconfig saslauthd off The saslauthd service provides essential functionality for performing authentication in some directory environments, such as those which use Kerberos and LDAP. For others, however, in which only local files may be consulted, it is not necessary and should be disabled. low CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Base Services
CCE-27258-3 Disable Portreserve (portreserve) disable via chkconfig The portreserve service is a TCP port reservation utility that can be used to prevent portmap from binding to well known TCP ports that are required for other services. The portreserve service can be disabled with the following command: $ sudo chkconfig portreserve off The portreserve service provides helpful functionality by preventing conflicting usage of ports in the reserved port range, but it can be disabled if not needed. low CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Base Services
CCE-26913-4 Disable D-Bus IPC Service (messagebus) disable via chkconfig D-Bus provides an IPC mechanism used by a growing list of programs, such as those used for Gnome, Bluetooth, and Avahi. Due to these dependencies, disabling D-Bus may not be practical for many systems. The messagebus service can be disabled with the following command: $ sudo chkconfig messagebus off If no services which require D-Bus are needed, then it can be disabled. As a broker for IPC between processes of different privilege levels, it could be a target for attack. However, disabling D-Bus is likely to be impractical for any system which needs to provide a graphical login session. low CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Base Services
CCE-27267-4 Disable Certmonger Service (certmonger) disable via chkconfig Certmonger is a D-Bus based service that attempts to simplify interaction with certifying authorities on networks which use public-key infrastructure. It is often combined with Red Hat's IPA (Identity Policy Audit) security information management solution to aid in the management of certificates. The certmonger service can be disabled with the following command: $ sudo chkconfig certmonger off The services provided by certmonger may be essential for systems fulfilling some roles a PKI infrastructure, but its functionality is not necessary for many other use cases. low CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Base Services
CCE-27256-7 Disable ntpdate Service (ntpdate) disable via chkconfig The ntpdate service sets the local hardware clock by polling NTP servers when the system boots. It synchronizes to the NTP servers listed in /etc/ntp/step-tickers or /etc/ntp.conf and then sets the local hardware clock to the newly synchronized system time. The ntpdate service can be disabled with the following command: $ sudo chkconfig ntpdate off The ntpdate 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. low CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-000096 Base Services
CCE-27250-0 Disable Control Group Config (cgconfig) disable via chkconfig Control groups allow an administrator to allocate system resources (such as CPU, memory, network bandwidth, etc) among a defined group (or groups) of processes executing on a system. The cgconfig daemon starts at boot and establishes the predefined control groups. The cgconfig service can be disabled with the following command: $ sudo chkconfig cgconfig off Unless control groups are used to manage system resources, running the cgconfig service is not necessary. low CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Base Services
CCE-27252-6 Disable Control Group Rules Engine (cgred) disable via chkconfig The cgred service moves tasks into control groups according to parameters set in the /etc/cgrules.conf configuration file. The cgred service can be disabled with the following command: $ sudo chkconfig cgred off Unless control groups are used to manage system resources, running the cgred service service is not necessary. low CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Base Services
CCE-26928-2 Disable Apache Qpid (qpidd) disable via chkconfig The qpidd 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 qpidd service can be disabled with the following command: $ sudo chkconfig qpidd off The qpidd service is automatically installed when the base 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 qpidd service is not needed and should be disabled or removed. low CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-000096 Base Services
CCE-27247-6 Disable Automatic Bug Reporting Tool (abrtd) disable via chkconfig The Automatic Bug Reporting Tool (abrtd) 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 abrtd service can be disabled with the following command: $ sudo chkconfig abrtd off Mishandling crash data could expose sensitive information about vulnerabilities in software executing on the system, as well as sensitive information from within a process's address space or registers. medium CM-6(a),CM-7(a) NaN NaN SRG-OS-000096 Base Services
CCE-27086-8 Disable Hardware Abstraction Layer Service (haldaemon) disable via chkconfig The Hardware Abstraction Layer Daemon (haldaemon) collects and maintains information about the system's hardware configuration. This service is required on a workstation running a desktop environment, and may be necessary on any system which deals with removable media or devices. The haldaemon service can be disabled with the following command: $ sudo chkconfig haldaemon off The haldaemon provides essential functionality on systems that use removable media or devices, but can be disabled for systems that do not require these. low CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Base Services
CCE-27254-2 Disable Network Console (netconsole) disable via chkconfig The netconsole 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 netconsole service can be disabled with the following command: $ sudo chkconfig netconsole off The netconsole service is not necessary unless there is a need to debug kernel panics, which is not common. low CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-000096 Base Services
CCE-26846-6 Disable Red Hat Network Service (rhnsd) disable via chkconfig 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 rhnsd service can be disabled with the following command: $ sudo chkconfig rhnsd off 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 rhnsd daemon can remain on. low CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-000096 Base Services
CCE-27260-9 Disable Quota Netlink (quota_nld) disable via chkconfig The quota_nld service provides notifications to users of disk space quota violations. It listens to the kernel via a netlink socket for disk quota violations and notifies the appropriate user of the violation using D-Bus or by sending a message to the terminal that the user has last accessed. The quota_nld service can be disabled with the following command: $ sudo chkconfig quota_nld off If disk quotas are enforced on the local system, then the quota_nld service likely provides useful functionality and should remain enabled. However, if disk quotas are not used or user notification of disk quota violation is not desired then there is no need to run this service. low CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Base Services
CCE-27061-1 Disable Advanced Configuration and Power Interface (acpid) disable via chkconfig The Advanced Configuration and Power Interface Daemon (acpid) dispatches ACPI events (such as power/reset button depressed) to userspace programs. The acpid service can be disabled with the following command: $ sudo chkconfig acpid off ACPI support is highly desirable for systems in some network roles, such as laptops or desktops. For other systems, such as servers, it may permit accidental or trivially achievable denial of service situations and disabling it is appropriate. medium CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Base Services
CCE-27093-4 Enable the NTP Daemon enable via chkconfig The ntpd service can be enabled with the following command: $ sudo chkconfig --level 2345 ntpd on Enabling the ntpd service ensures that the ntpd 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. The NTP daemon offers all of the functionality of ntpdate, which is now deprecated. Additional information on this is available at http://support.ntp.org/bin/view/Dev/DeprecatingNtpdate. medium AU-8(1)(a),CM-6(a) NaN NaN SRG-OS-000056 Network Time Protocol
CCE-26958-9 Specify Additional Remote NTP Servers server via /etc/ntp.conf Additional NTP servers can be specified for time synchronization in the file /etc/ntp.conf. To do so, add additional lines of the following form, substituting the IP address or hostname of a remote NTP server for ntpserver: server ntpserver Specifying additional NTP servers increases the availability of accurate time data, in the event that one of the specified servers becomes unavailable. This is typical for a system acting as an NTP server for other systems. unknown AU-8(1)(a),AU-8(2),CM-6(a) NaN NaN NaN Network Time Protocol
CCE-27098-3 Specify a Remote NTP Server NaN NaN To specify a remote NTP server for time synchronization, edit the file /etc/ntp.conf. Add or correct the following lines, substituting the IP or hostname of a remote NTP server for ntpserver: server ntpserver This instructs the NTP software to contact that remote server to obtain time data. Synchronizing with an NTP server makes it possible to collate system logs from multiple sources or correlate computer events with real time events. medium AU-8(1)(a),CM-6(a) NaN NaN SRG-OS-000056 Network Time Protocol
CCE-26899-5 Disable the CUPS Service disable via chkconfig The cups service can be disabled with the following command: $ sudo chkconfig cups off Turn off unneeded services to reduce attack surface. unknown CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Print Support
CCE-27108-0 Disable Printer Browsing Entirely if Possible disable via /etc/cups/cupsd.conf By default, CUPS listens on the network for printer list broadcasts on UDP port 631. This functionality is called printer browsing. To disable printer browsing entirely, edit the CUPS configuration file, located at /etc/cups/cupsd.conf, to include the following: Browsing Off BrowseAllow none The CUPS print service can be configured to broadcast a list of available printers to the network. Other systems on the network, also running the CUPS print service, can be configured to listen to these broadcasts and add and configure these printers for immediate use. By disabling this browsing capability, the system will no longer generate or receive such broadcasts. unknown CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Configure the CUPS Service if Necessary
CCE-27107-2 Disable Print Server Capabilities disable via /etc/cups/cupsd.conf To prevent remote users from potentially connecting to and using locally configured printers, disable the CUPS print server sharing capabilities. To do so, limit how the server will listen for print jobs by removing the more generic port directive from /etc/cups/cupsd.conf: Port 631 and replacing it with the Listen directive: Listen localhost:631 This will prevent remote users from printing to locally configured printers while still allowing local users on the system to print normally. By default, locally configured printers will not be shared over the network, but if this functionality has somehow been enabled, these recommendations will disable it again. Be sure to disable outgoing printer list broadcasts, or remote users will still be able to see the locally configured printers, even if they cannot actually print to them. To limit print serving to a particular set of users, use the Policy directive. unknown CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Configure the CUPS Service if Necessary
CCE-27039-7 Uninstall dovecot Package remove yum The dovecot package can be removed with the following command: $ sudo yum erase dovecot If there is no need to make the Dovecot software available, removing it provides a safeguard against its activation. unknown NaN NaN NaN NaN Disable Dovecot
CCE-26922-5 Disable Dovecot Service disable via chkconfig The dovecot service can be disabled with the following command: $ sudo chkconfig dovecot off Running an IMAP or POP3 server provides a network-based avenue of attack, and should be disabled if not needed. unknown NaN NaN NaN NaN Disable Dovecot
CCE-27633-7 Configure Dovecot to Use the SSL Key file configure via /etc/dovecot/conf.d/10-ssl.conf This option tells Dovecot where to find the the mail server's SSL Key. Edit /etc/dovecot/conf.d/10-ssl.conf and add or correct the following line (note: the path below is the default path set by the Dovecot installation. If you are using a different path, ensure you reference the appropriate file): ssl_key = </etc/pki/dovecot/private/dovecot.pem SSL certificates are used by the client to authenticate the identity of the server, as well as to encrypt credentials and message traffic. Not using SSL to encrypt mail server traffic could allow unauthorized access to credentials and mail messages since they are sent in plain text over the network. unknown NaN NaN NaN NaN Enable SSL Support
CCE-27459-7 Configure Dovecot to Use the SSL Certificate file configure via /etc/dovecot/conf.d/10-ssl.conf This option tells Dovecot where to find the the mail server's SSL Certificate. Edit /etc/dovecot/conf.d/10-ssl.conf and add or correct the following line (note: the path below is the default path set by the Dovecot installation. If you are using a different path, ensure you reference the appropriate file): ssl_cert = </etc/pki/dovecot/certs/dovecot.pem" SSL certificates are used by the client to authenticate the identity of the server, as well as to encrypt credentials and message traffic. Not using SSL to encrypt mail server traffic could allow unauthorized access to credentials and mail messages since they are sent in plain text over the network. unknown NaN NaN NaN NaN Enable SSL Support
CCE-27144-5 Disable Plaintext Authentication disable_plaintext_auth = yes via /etc/dovecot/conf.d/10-auth.conf To prevent Dovecot from attempting plaintext authentication of clients, edit /etc/dovecot/conf.d/10-auth.conf and add\or correct the following line: disable_plaintext_auth = yes Using plain text authentication to the mail server could allow an attacker access to credentials by monitoring network traffic. unknown NaN NaN NaN NaN Enable SSL Support
CCE-27571-9 Enable the SSL flag in /etc/dovecot.conf ssl = yes via /etc/dovecot/conf.d/10-ssl.conf To allow clients to make encrypted connections the ssl flag in Dovecot's configuration file needs to be set to yes. Edit /etc/dovecot/conf.d/10-ssl.conf and add or correct the following line: ssl = yes SSL encrypt network traffic between the Dovecot server and its clients protecting user credentials, mail as it is downloaded, and clients may use SSL certificates to authenticate the server, preventing another system from impersonating the server. unknown NaN NaN NaN NaN Enable SSL Support
CCE-82935-8 Uninstall nfs-utils Package remove via yum The nfs-utils package can be removed with the following command: $ sudo yum erase nfs-utils nfs-utils provides a daemon for the kernel NFS server and related tools. This package also contains the showmount program. showmount queries the mount daemon on a remote host for information about the Network File System (NFS) server on the remote host. For example, showmount can display the clients which are mounted on that host. low NaN NaN NaN SRG-OS-000095-GPOS-00049 NFS and RPC
CCE-27063-7 Configure lockd to use static UDP port configure via /etc/sysconfig/nfs Configure the lockd daemon to use a static UDP port as opposed to letting the RPC Bind service dynamically assign a port. Edit the file /etc/sysconfig/nfs. Add or correct the following line: LOCKD_UDPPORT=lockd-port Where lockd-port is a port which is not used by any other service on your network. Restricting services to always use a given port enables firewalling to be done more effectively. unknown NaN NaN NaN NaN Configure NFS Services to Use Fixed Ports (NFSv3 and NFSv2)
CCE-26889-6 Configure statd to use static port configure via /etc/sysconfig/nfs Configure the statd daemon to use a static port as opposed to letting the RPC Bind service dynamically assign a port. Edit the file /etc/sysconfig/nfs. Add or correct the following line: STATD_PORT=statd-port Where statd-port is a port which is not used by any other service on your network. Restricting services to always use a given port enables firewalling to be done more effectively. unknown NaN NaN NaN NaN Configure NFS Services to Use Fixed Ports (NFSv3 and NFSv2)
CCE-27114-8 Configure mountd to use static port configure via /etc/sysconfig/nfs Configure the mountd daemon to use a static port as opposed to letting the RPC Bind service dynamically assign a port. Edit the file /etc/sysconfig/nfs. Add or correct the following line: MOUNTD_PORT=statd-port Where mountd-port is a port which is not used by any other service on your network. Restricting services to always use a given port enables firewalling to be done more effectively. unknown NaN NaN NaN NaN Configure NFS Services to Use Fixed Ports (NFSv3 and NFSv2)
CCE-27149-4 Configure lockd to use static TCP port configure via /etc/sysconfig/nfs Configure the lockd daemon to use a static TCP port as opposed to letting the RPC Bind service dynamically assign a port. Edit the file /etc/sysconfig/nfs. Add or correct the following line: LOCKD_TCPPORT=lockd-port Where lockd-port is a port which is not used by any other service on your network. Restrict service to always use a given port, so that firewalling can be done effectively. unknown NaN NaN NaN NaN Configure NFS Services to Use Fixed Ports (NFSv3 and NFSv2)
CCE-27090-0 Mount Remote Filesystems with nodev nodev via /etc/fstab Add the nodev option to the fourth column of /etc/fstab for the line which controls mounting of any NFS mounts. Legitimate device files should only exist in the /dev directory. NFS mounts should not present device files to users. medium CM-6(a),MP-2 NaN NaN SRG-OS-999999 Mount Remote Filesystems with Restrictive Options
CCE-26972-0 Mount Remote Filesystems with nosuid nosuid via /etc/fstab Add the nosuid option to the fourth column of /etc/fstab for the line which controls mounting of any NFS mounts. 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. medium AC-6,AC-6(1),CM6(a) NaN NaN SRG-OS-999999 Mount Remote Filesystems with Restrictive Options
CCE-27199-9 Disable Network File System (nfs) disable via chkconfig The Network File System (NFS) service allows remote hosts to mount and interact with shared filesystems on the local system. If the local system is not designated as a NFS server then this service should be disabled. The nfs service can be disabled with the following command: $ sudo chkconfig nfs off Unnecessary services should be disabled to decrease the attack surface of the system. unknown CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Disable NFS Server Daemons
CCE-27122-1 Disable Secure RPC Server Service (rpcsvcgssd) disable via chkconfig The rpcsvcgssd service manages RPCSEC GSS contexts required to secure protocols that use RPC (most often Kerberos and NFS). The rpcsvcgssd service is the server-side of RPCSEC GSS. If the system does not require secure RPC then this service should be disabled. The rpcsvcgssd service can be disabled with the following command: $ sudo chkconfig rpcsvcgssd off Unnecessary services should be disabled to decrease the attack surface of the system. unknown NaN NaN NaN NaN Disable NFS Server Daemons
CCE-27414-2 Specify UID and GID for Anonymous NFS Connections configure via /etc/exports To specify the UID and GID for remote root users, edit the /etc/exports file and add the following for each export: anonuid=value greater than UID_MAX from /etc/login.defs anongid=value greater than GID_MAX from /etc/login.defs Note that a value of "-1" is technically acceptable as this will randomize the anonuid and anongid values on a Red Hat Enterprise Linux 6 based NFS server. While acceptable from a security perspective, a value of -1 may cause interoperability issues, particularly with Red Hat Enterprise Linux 7 client systems. Alternatively, functionally equivalent values of 60001, 65534, 65535 may be used. Specifying the anonymous UID and GID ensures that the remote root user is mapped to a local account which has no permissions on the system. unknown NaN NaN NaN NaN Disable NFS Server Daemons
CCE-27137-9 Disable Network File Systems (netfs) disable via chkconfig The netfs script manages the boot-time mounting of several types of networked filesystems, of which NFS and Samba are the most common. If these filesystem types are not in use, the script can be disabled, protecting the system somewhat against accidental or malicious changes to /etc/fstab and against flaws in the netfs script itself. The netfs service can be disabled with the following command: $ sudo chkconfig netfs off NaN unknown NaN NaN NaN NaN Disable netfs if Possible
CCE-26864-9 Disable Secure RPC Client Service (rpcgssd) disable via chkconfig The rpcgssd service manages RPCSEC GSS contexts required to secure protocols that use RPC (most often Kerberos and NFS). The rpcgssd service is the client-side of RPCSEC GSS. If the system does not require secure RPC then this service should be disabled. The rpcgssd service can be disabled with the following command: $ sudo chkconfig rpcgssd off NaN unknown NaN NaN NaN NaN Disable Services Used Only by NFS
CCE-26870-6 Disable RPC ID Mapping Service (rpcidmapd) disable via chkconfig The rpcidmapd service is used to map user names and groups to UID and GID numbers on NFSv4 mounts. If NFS is not in use on the local system then this service should be disabled. The rpcidmapd service can be disabled with the following command: $ sudo chkconfig rpcidmapd off NaN unknown NaN NaN NaN NaN Disable Services Used Only by NFS
CCE-27430-8 Disable rpcbind Service disable via chkconfig The rpcbind utility maps RPC services to the ports on which they listen. RPC processes notify rpcbind when they start, registering the ports they are listening on and the RPC program numbers they expect to serve. The rpcbind service redirects the client to the proper port number so it can communicate with the requested service. If the system does not require RPC (such as for NFS servers) then this service should be disabled. The rpcbind service can be disabled with the following command: $ sudo chkconfig rpcbind off If the system does not require rpc based services, it is recommended that rpcbind be disabled to reduce the attack surface. low NaN NaN NaN NaN Disable Services Used Only by NFS
CCE-27104-9 Disable Network File System Lock Service (nfslock) disable via chkconfig The Network File System Lock (nfslock) service starts the required remote procedure call (RPC) processes which allow clients to lock files on the server. If the local system is not configured to mount NFS filesystems then this service should be disabled. The nfslock service can be disabled with the following command: $ sudo chkconfig nfslock off NaN unknown NaN NaN NaN NaN Disable Services Used Only by NFS
CCE-27121-3 Restrict NFS Clients to Privileged Ports remove insecure via /etc/exports By default, the server NFS implementation requires that all client requests be made from ports less than 1024. If your organization has control over systems connected to its network, and if NFS requests are prohibited at the border firewall, this offers some protection against malicious requests from unprivileged users. Therefore, the default should not be changed. To ensure that the default has not been changed, ensure no line in /etc/exports contains the option insecure. Allowing client requests to be made from ports higher than 1024 could allow a unprivileged user to initiate an NFS connection. If the unprivileged user account has been compromised, an attacker could gain access to data on the NFS server. unknown CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Configure NFS Servers
CCE-80505-1 Ensure All-Squashing Disabled On All Exports remove all_squash via /etc/exports The all_squash maps all uids and gids to an anonymous user. This should be disabled by removing any instances of the all_squash option from the file /etc/exports. The all_squash option maps all client requests to a single anonymous uid/gid on the NFS server, negating the ability to track file access by user ID. low NaN NaN NaN SRG-OS-000104 Configure NFS Servers
CCE-27167-6 Ensure Insecure File Locking is Not Allowed remove insecure_locks via /etc/exports 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 insecure_locks 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 insecure_locks option from the file /etc/exports. Allowing insecure file locking could allow for sensitive data to be viewed or edited by an unauthorized user. medium NaN NaN NaN SRG-OS-000104 Configure NFS Servers
CCE-27138-7 Use Root-Squashing on All Exports remove no_root_squash via /etc/exports If a filesystem is exported using root squashing, requests from root on the client are considered to be unprivileged (mapped to a user such as nobody). This provides some mild protection against remote abuse of an NFS server. Root squashing is enabled by default, and should not be disabled. Ensure that no line in /etc/exports contains the option no_root_squash. If the NFS server allows root access to local file systems from remote hosts, this access could be used to compromise the system. unknown NaN NaN NaN NaN Configure NFS Servers
CCE-27102-3 Uninstall Samba Package remove via yum The samba package can be removed with the following command: $ sudo yum erase samba If there is no need to make the Samba software available, removing it provides a safeguard against its activation. unknown NaN NaN NaN NaN Disable Samba if Possible
CCE-27143-7 Disable Samba disable via chkconfig The smb service can be disabled with the following command: $ sudo chkconfig smb off Running a Samba server provides a network-based avenue of attack, and should be disabled if not needed. low NaN NaN NaN NaN Disable Samba if Possible
CCE-26328-5 Require Client SMB Packet Signing, if using smbclient client signing = mandatory via /etc/samba/smb.conf To require samba clients running smbclient to use packet signing, add the following to the [global] section of the Samba configuration file, /etc/samba/smb.conf: client signing = mandatory Requiring samba clients such as smbclient to use packet signing ensures they can only communicate with servers that support packet signing. Packet signing can prevent man-in-the-middle attacks which modify SMB packets in transit. unknown NaN NaN NaN SRG-OS-999999 Configure Samba if Necessary
CCE-26792-2 Require Client SMB Packet Signing, if using mount.cifs sec=krb5i or sec=ntlmv2i via /etc/fstab Require packet signing of clients who mount Samba shares using the mount.cifs program (e.g., those who specify shares in /etc/fstab). To do so, ensure signing options (either sec=krb5i or sec=ntlmv2i) are used. See the mount.cifs(8) man page for more information. A Samba client should only communicate with servers who can support SMB packet signing. Packet signing can prevent man-in-the-middle attacks which modify SMB packets in transit. unknown NaN NaN NaN SRG-OS-999999 Configure Samba if Necessary
CCE-27533-9 Disable Root Access to SMB Shares disable via /etc/samba/smb.conf Administrators should not use administrator accounts to access Samba file and printer shares. Disable the root user and the wheel administrator group: [share] invalid users = root @wheel If administrator accounts cannot be disabled, ensure that local system passwords and Samba service passwords do not match. Typically, administrator access is required when Samba must create user and system accounts and shares. Domain member servers and standalone servers may not need administrator access at all. If that is the case, add the invalid users parameter to [global] instead. unknown NaN NaN NaN NaN Configure Samba if Necessary
CCE-27198-1 Remove the X Windows Package Group remove via yum By removing the xorg-x11-server-common package, the system no longer has X Windows installed. If X Windows is not installed then the system cannot boot into graphical user mode. This prevents the system from being accidentally or maliciously booted into a graphical.target mode. To do so, run the following command: $ sudo yum groupremove "X Window System" $ sudo yum remove xorg-x11-server-common Unnecessary service packages must not be installed to decrease the attack surface of the system. X windows has a long history of security vulnerabilities and should not be installed unless approved and documented. medium CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-999999 Disable X Windows
CCE-27119-7 Disable X Windows Startup By Setting Runlevel 3 via /etc/inittab Setting the system's runlevel to 3 will prevent automatic startup of the X server. To do so, ensure the following line in /etc/inittab features a 3 as shown: id:3:initdefault: Unnecessary services should be disabled to decrease the attack surface of the system. medium CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-000248 Disable X Windows
CCE-27087-6 Disable Avahi Server Software disable via chkconfig The avahi-daemon service can be disabled with the following command: $ sudo chkconfig avahi-daemon off 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. medium CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-999999 Disable Avahi Server if Possible
CCE-27300-3 Restrict Information Published by Avahi configure via /etc/avahi/avahi-daemon.conf If it is necessary to publish some information to the network, it should not be joined by any extraneous information, or by information supplied by a non-trusted source on the system. Prevent user applications from using Avahi to publish services by adding or correcting the following line in the [publish] section: disable-user-service-publishing=yes Implement as many of the following lines as possible, to restrict the information published by Avahi. publish-addresses=no publish-hinfo=no publish-workstation=no publish-domain=no Inspect the files in the directory /etc/avahi/services/. Unless there is an operational need to publish information about each of these services, delete the corresponding file. These options prevent publishing attempts from succeeding, and can be applied even if publishing is disabled entirely via disable-publishing. Alternatively, these can be used to restrict the types of published information in the event that some information must be published. low CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Configure Avahi if Necessary
CCE-27340-9 Check Avahi Responses' TTL Field yes via /etc/avahi/avahi-daemon.conf To make Avahi ignore packets unless the TTL field is 255, edit /etc/avahi/avahi-daemon.conf and ensure the following line appears in the [server] section: check-response-ttl=yes This helps to ensure that only mDNS responses from the local network are processed, because the TTL field in a packet is decremented from its initial value of 255 whenever it is routed from one network to another. Although a properly-configured router or firewall should not allow mDNS packets into the local network at all, this option provides another check to ensure they are not permitted. low CM-6(a) NaN NaN NaN Configure Avahi if Necessary
CCE-27590-9 Serve Avahi Only via Required Protocol no via /etc/avahi/avahi-daemon.conf If you are using only IPv4, edit /etc/avahi/avahi-daemon.conf and ensure the following line exists in the [server] section: use-ipv6=no Similarly, if you are using only IPv6, disable IPv4 sockets with the line: use-ipv4=no NaN low CM-6(a) NaN NaN NaN Configure Avahi if Necessary
CCE-27526-3 Disable Avahi Publishing yes via /etc/avahi/avahi-daemon.conf To prevent Avahi from publishing its records, edit /etc/avahi/avahi-daemon.conf and ensure the following line appears in the [publish] section: disable-publishing=yes This helps ensure that no record will be published by Avahi. low CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Configure Avahi if Necessary
CCE-27308-6 Prevent Other Programs from Using Avahi's Port yes via /etc/avahi/avahi-daemon.conf To prevent other mDNS stacks from running, edit /etc/avahi/avahi-daemon.conf and ensure the following line appears in the [server] section: disallow-other-stacks=yes This helps ensure that only Avahi is responsible for mDNS traffic coming from that port on the system. medium CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Configure Avahi if Necessary
CCE-27187-4 Install vsftpd Package remove via yum If this system must operate as an FTP server, install the vsftpd package via the standard channels. The vsftpd package can be installed with the following command: $ sudo yum install vsftpd After Red Hat Enterprise Linux 2.1, Red Hat switched from distributing wu-ftpd with Red Hat Enterprise Linux to distributing vsftpd. For security and for consistency with future Red Hat releases, the use of vsftpd is recommended. low CM-6(a) NaN NaN NaN Use vsftpd to Provide FTP Service if Necessary
CCE-26687-4 Uninstall vsftpd Package install via yum The vsftpd package can be removed with the following command: $ sudo yum erase vsftpd Removing the vsftpd package decreases the risk of its accidental activation. high CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-000480-GPOS-00227 Disable vsftpd if Possible
CCE-26948-0 Disable vsftpd Service disable via chkconfig The vsftpd service can be disabled with the following command: $ sudo chkconfig vsftpd off Running FTP server software provides a network-based avenue of attack, and should be disabled if not needed. Furthermore, the FTP protocol is unencrypted and creates a risk of compromising sensitive information. medium CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Disable vsftpd if Possible
CCE-27142-9 Enable Logging of All FTP Transactions configure via /etc/vsftpd/vsftpd.conf Add or correct the following configuration options within the vsftpd configuration file, located at /etc/vsftpd/vsftpd.conf: xferlog_enable=YES xferlog_std_format=NO log_ftp_protocol=YES 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 /var/log/vsftpd.log. unknown NaN NaN NaN SRG-OS-000037 Configure vsftpd to Provide FTP Service if Necessary
CCE-27145-2 Create Warning Banners for All FTP Users configure via /etc/vsftpd/vsftpd.conf Edit the vsftpd configuration file, which resides at /etc/vsftpd/vsftpd.conf by default. Add or correct the following configuration options: banner_file=/etc/issue This setting will cause the system greeting banner to be used for FTP connections as well. medium NaN NaN NaN SRG-OS-000023 Configure vsftpd to Provide FTP Service if Necessary
CCE-27117-1 Disable FTP Uploads if Possible NO via /etc/vsftpd/vsftpd.conf Is there a mission-critical reason for users to upload files via FTP? If not, edit the vsftpd configuration file to add or correct the following configuration options: write_enable=NO If FTP uploads are necessary, follow the guidance in the remainder of this section to secure these transactions as much as possible. Anonymous FTP can be a convenient way to make files available for universal download. However, it is less common to have a need to allow unauthenticated users to place files on the FTP server. If this must be done, it is necessary to ensure that files cannot be uploaded and downloaded from the same directory. unknown NaN NaN NaN NaN Configure vsftpd to Provide FTP Service if Necessary
CCE-27411-8 Place the FTP Home Directory on its Own Partition partition via /etc/fstab By default, the anonymous FTP root is the home directory of the FTP user account. The df command can be used to verify that this directory is on its own partition. If there is a mission-critical reason for anonymous users to upload files, precautions must be taken to prevent these users from filling a disk used by other services. unknown NaN NaN NaN NaN Configure vsftpd to Provide FTP Service if Necessary
CCE-82047-2 Restrict Access to Anonymous Users if Possible NO via /etc/vsftpd/vsftpd.conf Is there a mission-critical reason for users to transfer files to/from their own accounts using FTP, rather than using a secure protocol like SCP/SFTP? If not, edit the vsftpd configuration file. Add or correct the following configuration option: local_enable=NO If non-anonymous FTP logins are necessary, follow the guidance in the remainder of this section to secure these logins as much as possible. The use of non-anonymous FTP logins is strongly discouraged. Since SSH clients and servers are widely available, and since SSH provides support for a transfer mode which resembles FTP in user interface, there is no good reason to allow password-based FTP access.' medium AC-17(a),AC-3,CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Restrict the Set of Users Allowed to Access FTP
CCE-82961-4 Install usbguard Package install via yum The usbguard package can be installed with the following command: $ sudo yum install usbguard usbguard is a software framework that helps to protect against rogue USB devices by implementing basic whitelisting/blacklisting capabilities based on USB device attributes. medium NaN NaN NaN SRG-OS-000378-GPOS-00163 USBGuard daemon
CCE-27448-0 Remove tftp Daemon remove via yum Trivial File Transfer Protocol (TFTP) is a simple file transfer protocol, typically used to automatically transfer configuration or boot files between systems. TFTP does not support authentication and can be easily hacked. The package tftp is a client program that allows for connections to a tftp server. It is recommended that TFTP be removed, unless there is a specific need for TFTP (such as a boot server). In that case, use extreme caution when configuring the services. low NaN NaN NaN NaN TFTP Server
CCE-26946-4 Uninstall tftp-server Package remove via yum The tftp-server package can be removed with the following command: $ sudo yum erase tftp-server Removing the tftp-server package decreases the risk of the accidental (or intentional) activation of tftp services. If TFTP is required for operational support (such as transmission of router configurations), its use must be documented with the Information Systems Securty Manager (ISSM), restricted to only authorized personnel, and have access control rules established. high CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-000095 TFTP Server
CCE-27055-3 Disable tftp Service disable via chkconfig The tftp service should be disabled. The tftp service can be disabled with the following command: $ sudo chkconfig tftp off Disabling the tftp service ensures the system is not acting as a TFTP server, which does not provide encryption or authentication. high CM-6(a),CM-7(a),CM-7(b) NaN 2.1.6 SRG-OS-000248 TFTP Server
CCE-27272-4 Ensure tftp Daemon Uses Secure Mode configure via /etc/xinetd.d/tftp If running the tftp service is necessary, it should be configured to change its root directory at startup. To do so, ensure /etc/xinetd.d/tftp includes -s as a command line argument, as shown in the following example: server_args = -s Using the -s 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. high AC-6,CM-6(b),CM-7(a) NaN NaN SRG-OS-999999 TFTP Server
CCE-27359-9 Uninstall rsh Package remove via yum The rsh package contains the client commands for the rsh services These legacy clients contain numerous security exposures and have been replaced with the more secure SSH package. Even if the server is removed, it is best to ensure the clients are also removed to prevent users from inadvertently attempting to use these commands and therefore exposing their credentials. Note that removing the rsh package removes the clients for rsh,rcp, and rlogin. unknown NaN NaN 2.3.2 NaN Rlogin, Rsh, and Rexec
CCE-27062-9 Uninstall rsh-server Package remove via yum The rsh-server package can be removed with the following command: $ sudo yum erase rsh-server The rsh-server service provides unencrypted remote access service which does not provide for the confidentiality and integrity of user passwords or the remote session and has very weak authentication. If a privileged user were to login using this service, the privileged user password could be compromised. The rsh-server package provides several obsolete and insecure network services. Removing it decreases the risk of those services' accidental (or intentional) activation. high CM-6(a),CM-7(a),CM-7(b),IA-5(1)(c) NaN NaN SRG-OS-000095 Rlogin, Rsh, and Rexec
CCE-26865-6 Disable rlogin Service disable via /etc/xinetd.d/rlogin The rlogin service, which is available with the rsh-server package and runs as a service through xinetd or separately as a systemd socket, should be disabled. If using xinetd, set disable to yes in /etc/xinetd.d/rlogin. 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. high CM-6(a),CM-7(a),CM-7(b),IA-5(1)(c) NaN 2.2.17 SRG-OS-000248 Rlogin, Rsh, and Rexec
CCE-26994-4 Disable rsh Service disable via /etc/xinetd.d/rsh The rsh service, which is available with the rsh-server package and runs as a service through xinetd or separately as a systemd socket, should be disabled. If using xinetd, set disable to yes in /etc/xinetd.d/rsh. 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. high CM-6(a),CM-7(a),CM-7(b),IA-5(1)(c) NaN 2.2.17 SRG-OS-000033 Rlogin, Rsh, and Rexec
CCE-27208-8 Disable rexec Service disable via /etc/xinetd.d/rexec The rexec service, which is available with the rsh-server package and runs as a service through xinetd or separately as a systemd socket, should be disabled. If using xinetd, set disable to yes in /etc/xinetd.d/rexec. 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. high CM-6(a),CM-7(a),CM-7(b),IA-5(1)(c) NaN 2.2.17 SRG-OS-000033 Rlogin, Rsh, and Rexec
CCE-27270-8 Remove Rsh Trust Files remove via rm The files /etc/hosts.equiv and ~/.rhosts (in each user'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: $ sudo rm /etc/hosts.equiv $ rm ~/.rhosts This action is only meaningful if .rhosts support is permitted through PAM. Trust files are convenient, but when used in conjunction with the R-services, they can allow unauthenticated access to a system. high CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-000248 Rlogin, Rsh, and Rexec
CCE-27428-2 Remove telnet Clients remove via yum The telnet client allows users to start connections to other systems via the telnet protocol. The telnet protocol is insecure and unencrypted. The use of an unencrypted transmission medium could allow an unauthorized user to steal credentials. The ssh package provides an encrypted session and stronger security and is included in Red Hat Enterprise Linux 6. low NaN NaN NaN NaN Telnet
CCE-27073-6 Uninstall telnet-server Package remove via yum The telnet-server package can be removed with the following command: $ sudo yum erase telnet-server It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities are often overlooked and therefore may remain unsecure. They increase the risk to the platform by providing additional attack vectors. The telnet service provides an unencrypted remote access service which does not provide for the confidentiality and integrity of user passwords or the remote session. If a privileged user were to login using this service, the privileged user password could be compromised. Removing the telnet-server package decreases the risk of the telnet service's accidental (or intentional) activation. high CM-6(a),CM-7(a),CM-7(b) NaN 2.1.1 SRG-OS-000095 Telnet
CCE-26836-7 Disable telnet Service disable via chkconfig The telnet service configuration file /etc/xinetd.d/telnet is not created automatically. If it was created manually, check the /etc/xinetd.d/telnet file and ensure that disable = no is changed to read disable = yes as follows below: # description: The telnet server serves telnet sessions; it uses \\ # unencrypted username/password pairs for authentication. service telnet { flags = REUSE socket_type = stream wait = no user = root server = /usr/sbin/in.telnetd log_on_failure += USERID disable = yes } If the /etc/xinetd.d/telnet file does not exist, make sure that the activation of the telnet service on system boot is disabled via the following command: 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. high CM-6(a),CM-7(a),CM-7(b),IA-5(1)(c) NaN 2.2.18 SRG-OS-000129 Telnet
CCE-27005-8 Uninstall xinetd Package remove via yum The xinetd package can be removed with the following command: $ sudo yum erase xinetd Removing the xinetd package decreases the risk of the xinetd service's accidental (or intentional) activation. low CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-000096 Xinetd
CCE-27046-2 Disable xinetd Service disable via chkconfig The xinetd service can be disabled with the following command: $ sudo chkconfig xinetd off 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. medium CM-6(a),CM-7(a),CM-7(b) NaN 2.1.7 SRG-OS-000096 Xinetd
CCE-84032-2 Verify Ownership of /etc/hosts.deny root via chown To properly set the owner of /etc/hosts.deny, run the command: $ sudo chown root /etc/hosts.deny The /etc/hosts.deny file is used to control access of clients to daemons in the server. Insecure groupownership of this file could allow users to grant clients unrestricted access or no access at all to services in the server. medium NaN NaN NaN NaN Xinetd
CCE-83823-5 Verify Group Ownership of /etc/hosts.allow root via chgrp To properly set the group owner of /etc/hosts.allow, run the command: $ sudo chgrp root /etc/hosts.allow The /etc/hosts.allow file is used to control access of clients to daemons in the server. Insecure groupownership of this file could allow users to grant clients unrestricted access or no access at all to services in the server. medium NaN NaN NaN NaN Xinetd
CCE-84030-6 Verify Group Ownership of /etc/hosts.deny root via chgrp To properly set the group owner of /etc/hosts.deny, run the command: $ sudo chgrp root /etc/hosts.deny The /etc/hosts.deny file is used to control access of clients to daemons in the server. Insecure groupownership of this file could allow users to grant clients unrestricted access or no access at all to services in the server. medium NaN NaN NaN NaN Xinetd
CCE-83825-0 Verify Ownership of /etc/hosts.allow root via chown To properly set the owner of /etc/hosts.allow, run the command: $ sudo chown root /etc/hosts.allow The /etc/hosts.allow file is used to control access of clients to daemons in the server. Insecure groupownership of this file could allow users to grant clients unrestricted access or no access at all to services in the server. medium NaN NaN NaN NaN Xinetd
CCE-83827-6 Verify Permissions on /etc/hosts.allow 644 via chmod To properly set the permissions of /etc/hosts.allow, run the command: $ sudo chmod 0644 /etc/hosts.allow The /etc/hosts.allow file is used to control access of clients to daemons in the server. Insecure groupownership of this file could allow users to grant clients unrestricted access or no access at all to services in the server. medium NaN NaN NaN NaN Xinetd
CCE-84034-8 Verify Permissions on /etc/hosts.deny 644 via chmod To properly set the permissions of /etc/hosts.deny, run the command: $ sudo chmod 0644 /etc/hosts.deny The /etc/hosts.deny file is used to control access of clients to daemons in the server. Insecure groupownership of this file could allow users to grant clients unrestricted access or no access at all to services in the server. medium NaN NaN NaN NaN Xinetd
CCE-27079-3 Uninstall ypserv Package remove via yum The ypserv package can be removed with the following command: $ sudo yum erase ypserv The NIS service provides an unencrypted authentication service which does not provide for the confidentiality and integrity of user passwords or the remote session. Removing the ypserv package decreases the risk of the accidental (or intentional) activation of NIS or NIS+ services. high CM-6(a),CM-7(a),CM-7(b),IA-5(1)(c) NaN 2.2.16 SRG-OS-000095 NIS
CCE-27372-2 Remove NIS Client remove via yum The Network Information Service (NIS), formerly known as Yellow Pages, is a client-server directory service protocol used to distribute system configuration files. The NIS client (ypbind) was used to bind a system to an NIS server and receive the distributed configuration files. The NIS service is inherently an insecure system that has been vulnerable to DOS attacks, buffer overflows and has poor authentication for querying NIS maps. NIS generally has been replaced by such protocols as Lightweight Directory Access Protocol (LDAP). It is recommended that the service be removed. unknown NaN NaN NaN NaN NIS
CCE-26894-6 Disable ypbind Service chkconfig off The ypbind service, which allows the system to act as a client in a NIS or NIS+ domain, should be disabled. The ypbind service can be disabled with the following command: $ sudo chkconfig ypbind off Disabling the ypbind service ensures the system is not acting as a client in a NIS or NIS+ domain. This service should be disabled unless in use. medium CM-6(a),CM-7(a),CM-7(b),IA-5(1)(c) NaN NaN SRG-OS-000096 NIS
CCE-27427-4 Uninstall talk-server Package remove via yum The talk-server package can be removed with the following command: $ sudo yum erase talk-server The talk software presents a security risk as it uses unencrypted protocols for communications. Removing the talk-server package decreases the risk of the accidental (or intentional) activation of talk services. medium NaN NaN 2.2.21 NaN Chat/Messaging Services
CCE-27373-0 Uninstall talk Package remove via yum The talk package contains the client program for the Internet talk protocol, which allows the user to chat with other users on different systems. Talk is a communication program which copies lines from one terminal to the terminal of another user. The talk package can be removed with the following command: $ sudo yum erase talk The talk software presents a security risk as it uses unencrypted protocols for communications. Removing the talk package decreases the risk of the accidental (or intentional) activation of talk client program. medium NaN NaN 2.3.3 NaN Chat/Messaging Services
CCE-27133-8 Uninstall httpd Package remove via yum The httpd package can be removed with the following command: $ sudo yum erase httpd If there is no need to make the web server software available, removing it provides a safeguard against its activation. unknown CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Disable Apache if Possible
CCE-27075-1 Disable httpd Service chkconfig off The httpd service can be disabled with the following command: $ sudo chkconfig httpd off Running web server software provides a network-based avenue of attack, and should be disabled if not needed. unknown CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Disable Apache if Possible
CCE-27525-5 Install mod_security install via yum Install the security module: The mod_security package can be installed with the following command: $ sudo yum install mod_security mod_security provides an additional level of protection for the web server by enabling the administrator to implement content access policies and filters at the application layer. unknown NaN NaN NaN NaN Deploy mod_security
CCE-27403-5 Install mod_ssl install via yum Install the mod_ssl module: The mod_ssl package can be installed with the following command: $ sudo yum install mod_ssl mod_ssl provides encryption capabilities for the httpd Web server. Unencrypted content is transmitted in plain text which could be passively monitored and accessed by unauthorized parties. unknown NaN NaN NaN NaN Deploy mod_ssl
CCE-27425-8 Set httpd ServerTokens Directive to Prod ServerTokens Prod via /etc/http/conf/httpd.conf ServerTokens Prod restricts information in page headers, returning only the word "Apache." Add or correct the following directive in /etc/httpd/conf/httpd.conf: ServerTokens Prod Information disclosed to clients about the configuration of the web server and system could be used to plan an attack on the given system. This information disclosure should be restricted to a minimum. unknown CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Restrict Web Server Information Leakage
CCE-27586-7 Set httpd ServerSignature Directive to Off ServerSignature Off via /etc/http/conf/httpd.conf ServerSignature Off restricts httpd from displaying server version number on error pages. Add or correct the following directive in /etc/httpd/conf/httpd.conf: ServerSignature Off Information disclosed to clients about the configuration of the web server and system could be used to plan an attack on the given system. This information disclosure should be restricted to a minimum. unknown CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Restrict Web Server Information Leakage
CCE-27487-8 Set Permissions on the /etc/httpd/conf/ Directory 750 via chmod To properly set the permissions of /etc/http/conf, run the command: $ sudo chmod 0750 /etc/http/conf Access to the web server's configuration files may allow an unauthorized user or attacker to access information about the web server or alter the server's configuration files. unknown NaN NaN NaN NaN Restrict File and Directory Access
CCE-27316-9 Set Permissions on All Configuration Files Inside /etc/httpd/conf/ 640 via chmod To properly set the permissions of /etc/http/conf/*, run the command: $ sudo chmod 0640 /etc/http/conf/* Access to the web server's configuration files may allow an unauthorized user or attacker to access information about the web server or to alter the server's configuration files. unknown AC-6(1),CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Restrict File and Directory Access
CCE-27150-2 Set Permissions on the /var/log/httpd/ Directory 700 via chmod Ensure that the permissions on the web server log directory is set to 700: $ sudo chmod 700 /var/log/httpd/ This is its default setting. A major tool in exploring the web site use, attempted use, unusual conditions, and problems are the access and error logs. In the event of a security incident, these logs can provide the SA and the web manager with valuable information. To ensure the integrity of the log files and protect the SA and the web manager from a conflict of interest related to the maintenance of these files, only the members of the Auditors group will be granted permissions to move, copy, and delete these files in the course of their duties related to the archiving of these files. medium AC-6(1),CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Restrict File and Directory Access
CCE-27507-3 Disable Web Server Configuration Display disable via /etc/http/conf/httpd.conf The info module creates a web page illustrating the configuration of the web server. This can create an unnecessary security leak and should be disabled. If its functionality is unnecessary, comment out the module: #LoadModule info_module modules/mod_info.so If there is a critical need for this module, use the Location directive to provide an access control list to restrict access to the information. Minimizing the number of loadable modules available to the web server reduces risk by limiting the capabilities allowed by the web server. unknown NaN NaN NaN NaN httpd Core Modules
CCE-27570-1 Disable HTTP mod_rewrite disable via /etc/http/conf/httpd.conf The mod_rewrite module is very powerful and can protect against certain classes of web attacks. However, it is also very complex and has a significant history of vulnerabilities itself. If its functionality is unnecessary, comment out the related module: #LoadModule rewrite_module modules/mod_rewrite.so Minimizing the number of loadable modules available to the web server reduces risk by limiting the capabilities allowed by the web server. unknown NaN NaN NaN NaN httpd Core Modules
CCE-26859-9 Disable Cache Support disable via /etc/http/conf/httpd.conf The cache module allows httpd to cache data, optimizing access to frequently accessed content. However, it introduces potential security flaws such as the possibility of circumventing Allow and Deny directives. If this functionality is unnecessary, comment out the module: #LoadModule cache_module modules/mod_cache.so If caching is required, it should not be enabled for any limited-access content. Minimizing the number of loadable modules available to the web server reduces risk by limiting the capabilities allowed by the web server. unknown NaN NaN NaN NaN httpd Core Modules
CCE-27541-2 Disable MIME Magic disable via /etc/http/conf/httpd.conf The mime_magic module provides a second layer of MIME support that in most configurations is likely extraneous. If its functionality is unnecessary, comment out the related module: #LoadModule mime_magic_module modules/mod_mime_magic.so Minimizing the number of loadable modules available to the web server reduces risk by limiting the capabilities allowed by the web server. unknown NaN NaN NaN NaN httpd Core Modules
CCE-27468-8 Disable Server Activity Status disable via /etc/http/conf/httpd.conf The status module provides real-time access to statistics on the internal operation of the web server. This may constitute an unnecessary information leak and should be disabled unless necessary. To do so, comment out the related module: #LoadModule status_module modules/mod_status.so If there is a critical need for this module, ensure that access to the status page is properly restricted to a limited set of hosts in the status handler configuration. Minimizing the number of loadable modules available to the web server reduces risk by limiting the capabilities allowed by the web server. unknown NaN NaN NaN NaN httpd Core Modules
CCE-27362-3 Disable CGI Support disable via /etc/http/conf/httpd.conf The cgi module allows HTML to interact with the CGI web programming language. If this functionality is unnecessary, comment out the module: #LoadModule cgi_module modules/mod_cgi.so If the web server requires the use of CGI, enable mod_cgi. Minimizing the number of loadable modules available to the web server reduces risk by limiting the capabilities allowed by the web server. unknown NaN NaN NaN NaN httpd Core Modules
CCE-27276-5 Disable URL Correction on Misspelled Entries disable via /etc/http/conf/httpd.conf The speling module attempts to find a document match by allowing one misspelling in an otherwise failed request. If this functionality is unnecessary, comment out the module: #LoadModule speling_module modules/mod_speling.so This functionality weakens server security by making site enumeration easier. Minimizing the number of loadable modules available to the web server reduces risk by limiting the capabilities allowed by the web server. unknown NaN NaN NaN NaN httpd Core Modules
CCE-27395-3 Disable LDAP Support disable via /etc/http/conf/httpd.conf The ldap module provides HTTP authentication via an LDAP directory. If its functionality is unnecessary, comment out the related modules: #LoadModule ldap_module modules/mod_ldap.so #LoadModule authnz_ldap_module modules/mod_authnz_ldap.so If LDAP is to be used, SSL encryption should be used as well. Minimizing the number of loadable modules available to the web server reduces risk by limiting the capabilities allowed by the web server. unknown NaN NaN NaN NaN httpd Core Modules
CCE-27329-2 Disable WebDAV (Distributed Authoring and Versioning) disable via /etc/http/conf/httpd.conf WebDAV is an extension of the HTTP protocol that provides distributed and collaborative access to web content. If its functionality is unnecessary, comment out the related modules: #LoadModule dav_module modules/mod_dav.so #LoadModule dav_fs_module modules/mod_dav_fs.so If there is a critical need for WebDAV, extra care should be taken in its configuration. Since DAV access allows remote clients to manipulate server files, any location on the server that is DAV enabled should be protected by access controls. Minimizing the number of loadable modules available to the web server, reduces risk by limiting the capabilities allowed by the web server. unknown NaN NaN NaN NaN httpd Core Modules
CCE-27558-6 Disable Server Side Includes disable via /etc/http/conf/httpd.conf Server Side Includes provide a method of dynamically generating web pages through the insertion of server-side code. However, the technology is also deprecated and introduces significant security concerns. If this functionality is unnecessary, comment out the related module: #LoadModule include_module modules/mod_include.so If there is a critical need for Server Side Includes, they should be enabled with the option IncludesNoExec to prevent arbitrary code execution. Additionally, user supplied data should be encoded to prevent cross-site scripting vulnerabilities. Minimizing the number of loadable modules available to the web server reduces risk by limiting the capabilities allowed by the web server. unknown NaN NaN NaN NaN httpd Core Modules
CCE-27553-7 Disable HTTP Digest Authentication disable via /etc/http/conf/httpd.conf The auth_digest module provides encrypted authentication sessions. If this functionality is unnecessary, comment out the related module: #LoadModule auth_digest_module modules/mod_auth_digest.so Minimizing the number of loadable modules available to the web server reduces risk by limiting the capabilities allowed by the web server. unknown NaN NaN NaN NaN httpd Core Modules
CCE-27442-3 Disable Proxy Support disable via /etc/http/conf/httpd.conf The proxy module provides proxying support, allowing httpd to forward requests and serve as a gateway for other servers. If its functionality is unnecessary, comment out the module: #LoadModule proxy_module modules/mod_proxy.so If proxy support is needed, load mod_proxy and the appropriate proxy protocol handler module (one of mod_proxy_http, mod_proxy_ftp, or mod_proxy_connect). Additionally, make certain that a server is secure before enabling proxying, as open proxy servers are a security risk. mod_proxy_balancer enables load balancing, but requires that mod status be enabled. Minimizing the number of loadable modules available to the web server reduces risk by limiting the capabilities allowed by the web server. unknown NaN NaN NaN NaN httpd Core Modules
CCE-27574-3 Restrict Web Directory restrict via /etc/http/conf/httpd.conf The default configuration for the web (/var/www/html) Directory allows directory indexing (Indexes) and the following of symbolic links (FollowSymLinks). Neither of these is recommended. The /var/www/html directory hierarchy should not be viewable via the web, and symlinks should only be followed if the owner of the symlink also owns the linked file. Ensure that this policy is adhered to by altering the related section of the configuration: <Directory "/var/www/html"> # ... Options SymLinksIfOwnerMatch # ... </Directory> Access to the web server's directory hierarchy could allow access to unauthorized files by web clients. Following symbolic links could also allow such access. unknown NaN NaN NaN NaN Directory Restrictions
CCE-27009-0 Restrict Root Directory restrict via /etc/http/conf/httpd.conf The httpd root directory should always have the most restrictive configuration enabled. <Directory / > Options None AllowOverride None Order allow,deny </Directory> The Web Server's root directory content should be protected from unauthorized access by web clients. unknown NaN NaN NaN NaN Directory Restrictions
CCE-27565-1 Restrict Other Critical Directories restrict via /etc/http/conf/httpd.conf All accessible web directories should be configured with similarly restrictive settings. The Options directive should be limited to necessary functionality and the AllowOverride directive should be used only if needed. The Order and Deny access control tags should be used to deny access by default, allowing access only where necessary. Directories accessible from a web client should be configured with the least amount of access possible in order to avoid unauthorized access to restricted content or server information. unknown NaN NaN NaN NaN Directory Restrictions
CCE-27581-8 Limit Available Methods restrict via /etc/http/conf/httpd.conf Web server methods are defined in section 9 of RFC 2616 ( http://www.ietf.org/rfc/rfc2616.txt). If a web server does not require the implementation of all available methods, they should be disabled. Note: GET and POST are the most common methods. A majority of the others are limited to the WebDAV protocol. <Directory /var/www/html> # ... # Only allow specific methods (this command is case-sensitive!) <LimitExcept GET POST> Order allow,deny </LimitExcept> # ... </Directory> Minimizing the number of available methods to the web client reduces risk by limiting the capabilities allowed by the web server. unknown NaN NaN NaN NaN Directory Restrictions
CCE-82443-3 Install the SSSD Package install via yum The sssd package should be installed. The sssd package can be installed with the following command: $ sudo yum install sssd NaN medium CM-6(a) NaN NaN NaN System Security Services Daemon
CCE-82992-9 Install sssd-ipa Package install via yum The sssd-ipa package can be installed with the following command: $ sudo yum install sssd-ipa sssd-ipa provides the IPA back end that the SSSD can utilize to fetch identity data from and authenticate against an IPA server. medium NaN NaN NaN SRG-OS-000480-GPOS-00227 System Security Services Daemon
CCE-82453-2 Enable the SSSD Service enable via chkconfig The SSSD service should be enabled. The sssd service can be enabled with the following command: $ sudo chkconfig --level 2345 sssd on NaN medium CM-6(a),IA-5(10) NaN NaN NaN System Security Services Daemon
CCE-82447-4 Configure SSSD to Expire Offline Credentials 1 via /etc/sssd/sssd.conf SSSD should be configured to expire offline credentials after 1 day. To configure SSSD to expire offline credentials, set offline_credentials_expiration to 1 under the [pam] section in /etc/sssd/sssd.conf. For example: [pam] offline_credentials_expiration = 1 If cached authentication information is out-of-date, the validity of the authentication information may be questionable. medium CM-6(a),IA-5(13) NaN NaN SRG-OS-000383-GPOS-00166 System Security Services Daemon
CCE-82445-8 Configure SSSD's Memory Cache to Expire configure via /etc/sssd/sssd.conf SSSD's memory cache should be configured to set to expire records after seconds. To configure SSSD to expire memory cache, set memcache_timeout to under the [nss] section in /etc/sssd/sssd.conf. For example: [nss] memcache_timeout = If cached authentication information is out-of-date, the validity of the authentication information may be questionable. medium CM-6(a),IA-5(13) NaN NaN SRG-OS-000383-GPOS-00166 System Security Services Daemon
CCE-82441-7 Configure SSSD to Expire SSH Known Hosts configure via /etc/sssd/sssd.conf SSSD should be configured to expire keys from known SSH hosts after seconds. To configure SSSD to known SSH hosts, set ssh_known_hosts_timeout to under the [ssh] section in /etc/sssd/sssd.conf. For example: [ssh] ssh_known_hosts_timeout = If cached authentication information is out-of-date, the validity of the authentication information may be questionable. medium CM-6(a),IA-5(13) NaN NaN SRG-OS-000383-GPOS-00166 System Security Services Daemon
CCE-26332-7 Uninstall net-snmp Package remove via yum The net-snmp package provides the snmpd service. The net-snmp package can be removed with the following command: $ sudo yum erase net-snmp If there is no need to run SNMP server software, removing the package provides a safeguard against its activation. unknown NaN NaN NaN NaN Disable SNMP Server if Possible
CCE-26906-8 Disable snmpd Service disable via chkconfig The snmpd service can be disabled with the following command: $ sudo chkconfig snmpd off Running SNMP software provides a network-based avenue of attack, and should be disabled if not needed. low NaN NaN NaN NaN Disable SNMP Server if Possible
CCE-82731-1 Ensure SNMP Read Write is disabled disable via /etc/snmp/snmpd.conf Edit /etc/snmp/snmpd.conf, remove any rwuser entries. Once the read write users have been removed, restart the SNMP service: $ sudo service snmpd restart Certain SNMP settings can permit users to execute system behaviors from user writes to the community strings. This may permit a compromised account to execute commands on a remote system. medium NaN NaN NaN NaN Configure SNMP Server if Necessary
CCE-27593-3 Ensure Default SNMP Password Is Not Used Change via /etc/snmp/snmpd.conf Edit /etc/snmp/snmpd.conf, remove or change the default community strings of public and private. Once the default community strings have been changed, restart the SNMP service: $ sudo service snmpd restart Whether active or not, default simple network management protocol (SNMP) community strings must be changed to maintain security. If the service is running with the default authenticators, then anyone can gather data about the system and the network and use the information to potentially compromise the integrity of the system and network(s). high IA-5(e) NaN NaN SRG-OS-999999 Configure SNMP Server if Necessary
CCE-27365-6 Configure SNMP Service to Use Only SNMPv3 or Newer remove via /etc/snmp/snmpd.conf Edit /etc/snmp/snmpd.conf, removing any references to rocommunity, rwcommunity, or com2sec. Upon doing that, restart the SNMP service: $ sudo service snmpd restart Earlier versions of SNMP are considered insecure, as they potentially allow unauthorized access to detailed system management information. medium NaN NaN NaN SRG-OS-999999 Configure SNMP Server if Necessary
CCE-27070-2 Enable cron Service enable via chkconfig The crond 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 crond service can be enabled with the following command: $ sudo chkconfig --level 2345 crond on Due to its usage for maintenance and security-supporting tasks, enabling the cron daemon is essential. medium CM-6(a) NaN NaN SRG-OS-999999 Cron and At Daemons
CCE-27249-2 Disable At Service (atd) disable via chkconfig The at and batch 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 atd keeps track of tasks scheduled via at and batch, and executes them at the specified time. The atd service can be disabled with the following command: $ sudo chkconfig atd off The atd 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 at or batch is not common. medium CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-000096 Cron and At Daemons
CCE-27158-5 Disable anacron Service remove via yum The cronie-anacron package, which provides anacron functionality, is installed by default. The cronie-anacron package can be removed with the following command: $ sudo yum erase cronie-anacron The anacron service provides cron functionality for systems such as laptops and workstations that may be shut down during the normal times that cron jobs are scheduled to run. On systems which do not require this additional functionality, anacron could needlessly increase the possible attack surface for an intruder. unknown CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Cron and At Daemons
CCE-82216-3 Verify Owner on crontab root via chown To properly set the owner of /etc/crontab, run the command: $ sudo chown root /etc/crontab Service configuration files enable or disable features of their respective services that if configured incorrectly can lead to insecure and vulnerable configurations. Therefore, service configuration files should be owned by the correct user to prevent unauthorized changes. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 Cron and At Daemons
CCE-82210-6 Verify Group Who Owns cron.hourly root via chgrp To properly set the group owner of /etc/cron.hourly, run the command: $ sudo chgrp root /etc/cron.hourly Service configuration files enable or disable features of their respective services that if configured incorrectly can lead to insecure and vulnerable configurations. Therefore, service configuration files should be owned by the correct group to prevent unauthorized changes. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 Cron and At Daemons
CCE-82238-7 Verify Permissions on cron.daily 700 via chmod To properly set the permissions of /etc/cron.daily, run the command: $ sudo chmod 0700 /etc/cron.daily Service configuration files enable or disable features of their respective services that if configured incorrectly can lead to insecure and vulnerable configurations. Therefore, service configuration files should have the correct access rights to prevent unauthorized changes. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 Cron and At Daemons
CCE-82221-3 Verify Group Who Owns Crontab root via chgrp To properly set the group owner of /etc/crontab, run the command: $ sudo chgrp root /etc/crontab Service configuration files enable or disable features of their respective services that if configured incorrectly can lead to insecure and vulnerable configurations. Therefore, service configuration files should be owned by the correct group to prevent unauthorized changes. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 Cron and At Daemons
CCE-82269-2 Verify Owner on cron.d root via chown To properly set the owner of /etc/cron.d, run the command: $ sudo chown root /etc/cron.d Service configuration files enable or disable features of their respective services that if configured incorrectly can lead to insecure and vulnerable configurations. Therefore, service configuration files should be owned by the correct user to prevent unauthorized changes. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 Cron and At Daemons
CCE-82204-9 Verify Permissions on crontab 600 via chmod To properly set the permissions of /etc/crontab, run the command: $ sudo chmod 0600 /etc/crontab Service configuration files enable or disable features of their respective services that if configured incorrectly can lead to insecure and vulnerable configurations. Therefore, service configuration files should have the correct access rights to prevent unauthorized changes. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 Cron and At Daemons
CCE-82231-2 Verify Group Who Owns cron.daily root via chgrp To properly set the group owner of /etc/cron.daily, run the command: $ sudo chgrp root /etc/cron.daily Service configuration files enable or disable features of their respective services that if configured incorrectly can lead to insecure and vulnerable configurations. Therefore, service configuration files should be owned by the correct group to prevent unauthorized changes. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 Cron and At Daemons
CCE-82235-3 Verify Owner on cron.daily root via chown To properly set the owner of /etc/cron.daily, run the command: $ sudo chown root /etc/cron.daily Service configuration files enable or disable features of their respective services that if configured incorrectly can lead to insecure and vulnerable configurations. Therefore, service configuration files should be owned by the correct user to prevent unauthorized changes. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 Cron and At Daemons
CCE-82264-3 Verify Group Who Owns cron.d root via chgrp To properly set the group owner of /etc/cron.d, run the command: $ sudo chgrp root /etc/cron.d Service configuration files enable or disable features of their respective services that if configured incorrectly can lead to insecure and vulnerable configurations. Therefore, service configuration files should be owned by the correct group to prevent unauthorized changes. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 Cron and At Daemons
CCE-82248-6 Verify Permissions on cron.weekly 700 via chmod To properly set the permissions of /etc/cron.weekly, run the command: $ sudo chmod 0700 /etc/cron.weekly Service configuration files enable or disable features of their respective services that if configured incorrectly can lead to insecure and vulnerable configurations. Therefore, service configuration files should have the correct access rights to prevent unauthorized changes. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 Cron and At Daemons
CCE-82254-4 Verify Group Who Owns cron.monthly root via chgrp To properly set the group owner of /etc/cron.monthly, run the command: $ sudo chgrp root /etc/cron.monthly Service configuration files enable or disable features of their respective services that if configured incorrectly can lead to insecure and vulnerable configurations. Therefore, service configuration files should be owned by the correct group to prevent unauthorized changes. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 Cron and At Daemons
CCE-82257-7 Verify Owner on cron.monthly root via chown To properly set the owner of /etc/cron.monthly, run the command: $ sudo chown root /etc/cron.monthly Service configuration files enable or disable features of their respective services that if configured incorrectly can lead to insecure and vulnerable configurations. Therefore, service configuration files should be owned by the correct user to prevent unauthorized changes. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 Cron and At Daemons
CCE-82241-1 Verify Group Who Owns cron.weekly root via chgrp To properly set the group owner of /etc/cron.weekly, run the command: $ sudo chgrp root /etc/cron.weekly Service configuration files enable or disable features of their respective services that if configured incorrectly can lead to insecure and vulnerable configurations. Therefore, service configuration files should be owned by the correct group to prevent unauthorized changes. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 Cron and At Daemons
CCE-82228-8 Verify Permissions on cron.hourly 700 via chmod To properly set the permissions of /etc/cron.hourly, run the command: $ sudo chmod 0700 /etc/cron.hourly Service configuration files enable or disable features of their respective services that if configured incorrectly can lead to insecure and vulnerable configurations. Therefore, service configuration files should have the correct access rights to prevent unauthorized changes. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 Cron and At Daemons
CCE-82207-2 Verify Owner on cron.hourly root via chown To properly set the owner of /etc/cron.hourly, run the command: $ sudo chown root /etc/cron.hourly Service configuration files enable or disable features of their respective services that if configured incorrectly can lead to insecure and vulnerable configurations. Therefore, service configuration files should be owned by the correct user to prevent unauthorized changes. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 Cron and At Daemons
CCE-82245-2 Verify Owner on cron.weekly root via chown To properly set the owner of /etc/cron.weekly, run the command: $ sudo chown root /etc/cron.weekly Service configuration files enable or disable features of their respective services that if configured incorrectly can lead to insecure and vulnerable configurations. Therefore, service configuration files should be owned by the correct user to prevent unauthorized changes. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 Cron and At Daemons
CCE-82275-9 Verify Permissions on cron.d 700 via chmod To properly set the permissions of /etc/cron.d, run the command: $ sudo chmod 0700 /etc/cron.d Service configuration files enable or disable features of their respective services that if configured incorrectly can lead to insecure and vulnerable configurations. Therefore, service configuration files should have the correct access rights to prevent unauthorized changes. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 Cron and At Daemons
CCE-82261-9 Verify Permissions on cron.monthly 700 via chmod To properly set the permissions of /etc/cron.monthly, run the command: $ sudo chmod 0700 /etc/cron.monthly Service configuration files enable or disable features of their respective services that if configured incorrectly can lead to insecure and vulnerable configurations. Therefore, service configuration files should have the correct access rights to prevent unauthorized changes. medium AC-6(1),CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 Cron and At Daemons
CCE-27054-6 Disable SSH Server If Possible (Unusual) disable via chkconfig The SSH server service, sshd, is commonly needed. However, if it can be disabled, do so. The sshd service can be disabled with the following command: $ sudo chkconfig sshd off This is unusual, as SSH is a common method for encrypted and authenticated remote access. NaN unknown NaN NaN NaN NaN SSH Server
CCE-82903-6 Verify Group Who Owns SSH Server config file root via chgrp To properly set the group owner of /etc/ssh/sshd_config, run the command: $ sudo chgrp root /etc/ssh/sshd_config Service configuration files enable or disable features of their respective services that if configured incorrectly can lead to insecure and vulnerable configurations. Therefore, service configuration files should be owned by the correct group to prevent unauthorized changes. medium AC-17(a),AC-6(1),CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 SSH Server
CCE-82900-2 Verify Owner on SSH Server config file root via chown To properly set the owner of /etc/ssh/sshd_config, run the command: $ sudo chown root /etc/ssh/sshd_config Service configuration files enable or disable features of their respective services that if configured incorrectly can lead to insecure and vulnerable configurations. Therefore, service configuration files should be owned by the correct group to prevent unauthorized changes. medium AC-17(a),AC-6(1),CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 SSH Server
CCE-82896-2 Verify Permissions on SSH Server config file 600 via chmod To properly set the permissions of /etc/ssh/sshd_config, run the command: $ sudo chmod 0600 /etc/ssh/sshd_config Service configuration files enable or disable features of their respective services that if configured incorrectly can lead to insecure and vulnerable configurations. Therefore, service configuration files should be owned by the correct group to prevent unauthorized changes. medium AC-17(a),AC-6(1),CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 SSH Server
CCE-27060-3 Remove SSH Server iptables Firewall exception (Unusual) remove via iptables By default, inbound connections to SSH's port are allowed. If the SSH server is not being used, this exception should be removed from the firewall configuration. Edit the files /etc/sysconfig/iptables and /etc/sysconfig/ip6tables (if IPv6 is in use). In each file, locate and delete the line: -A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT This is unusual, as SSH is a common method for encrypted and authenticated remote access. If inbound SSH connections are not expected, disallowing access to the SSH port will avoid possible exploitation of the port by an attacker. unknown NaN NaN NaN NaN SSH Server
CCE-82427-6 Verify Permissions on SSH Server Public *.pub Key Files 644 via chmod To properly set the permissions of /etc/ssh/*.pub, run the command: $ sudo chmod 0644 /etc/ssh/*.pub If a public host key file is modified by an unauthorized user, the SSH service may be compromised. medium AC-17(a),AC-6(1),CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 SSH Server
CCE-82423-5 Verify Permissions on SSH Server Private *_key Key Files 640 via chmod To properly set the permissions of /etc/ssh/*_key, run the command: $ sudo chmod 0640 /etc/ssh/*_key If an unauthorized user obtains the private SSH host key file, the host could be impersonated. medium AC-17(a),AC-6(1),CM-6(a) NaN NaN SRG-OS-000480-GPOS-00227 SSH Server
CCE-82343-5 Disable PubkeyAuthentication Authentication no via /etc/ssh/sshd_config Unless needed, SSH should not permit extraneous or unnecessary authentication mechanisms. To disable PubkeyAuthentication authentication, add or correct the following line in the /etc/ssh/sshd_config file: PubkeyAuthentication no PubkeyAuthentication authentication is used to provide additional authentication mechanisms to applications. Allowing PubkeyAuthentication authentication through SSH allows users to generate their own authentication tokens, increasing the attack surface of the system. medium NaN NaN NaN NaN Configure OpenSSH Server if Necessary
CCE-80504-4 Enable SSH Print Last Log yes via /etc/ssh/sshd_config When enabled, SSH will display the date and time of the last successful account logon. To enable LastLog in SSH, add or correct the following line in the /etc/ssh/sshd_config file: PrintLastLog yes Providing users feedback on when account accesses last occurred facilitates user recognition and reporting of unauthorized account use. medium AC-17(a),AC-9,CM-6(a) NaN NaN SRG-OS-000025 Configure OpenSSH Server if Necessary
CCE-27112-2 Enable SSH Warning Banner configure via /etc/ssh/sshd_config To enable the warning banner and ensure it is consistent across the system, add or correct the following line in /etc/ssh/sshd_config: Banner /etc/issue Another section contains information on how to create an appropriate system-wide warning banner. 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. medium AC-17(a),AC-8(a),AC-8(c),CM-6(a) FTA_TAB.1 NaN SRG-OS-000023 Configure OpenSSH Server if Necessary
CCE-27100-7 Disable SSH Root Login no via /etc/ssh/sshd_config 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 /etc/ssh/sshd_config: PermitRootLogin no Even though the communications channel may be encrypted, an additional layer of security is gained by extending the policy of not logging directly on as root. In addition, logging in with a user-specific account provides individual accountability of actions performed on the system and also helps to minimize direct attack attempts on root's password. medium AC-17(a),AC-6(2),CM-6(a),CM-7(a),CM-7(b),IA-2,IA-2(5) FIA_UAU.1 NaN SRG-OS-000109 Configure OpenSSH Server if Necessary
CCE-26887-0 Disable SSH Access via Empty Passwords no via /etc/ssh/sshd_config To explicitly disallow SSH login from accounts with empty passwords, add or correct the following line in /etc/ssh/sshd_config: PermitEmptyPasswords no Any accounts with empty passwords should be disabled immediately, and PAM configuration should prevent users from being able to assign themselves empty passwords. 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. high AC-17(a),CM-6(a),CM-7(a),CM-7(b) FIA_UAU.1 NaN SRG-OS-000106 Configure OpenSSH Server if Necessary
CCE-27091-8 Disable Host-Based Authentication no via /etc/ssh/sshd_config SSH's cryptographic host-based authentication is more secure than .rhosts authentication. However, it is not recommended that hosts unilaterally trust one another, even within an organization. To disable host-based authentication, add or correct the following line in /etc/ssh/sshd_config: HostbasedAuthentication no SSH trust relationships mean a compromise on one host can allow an attacker to move trivially to other hosts. medium AC-17(a),AC-3,CM-6(a),CM-7(a),CM-7(b) FIA_UAU.1 NaN SRG-OS-000106 Configure OpenSSH Server if Necessary
CCE-27072-8 Allow Only SSH Protocol 2 2 via /etc/ssh/sshd_config Only SSH protocol version 2 connections should be permitted. The default setting in /etc/ssh/sshd_config is correct, and can be verified by ensuring that the following line appears: Protocol 2 SSH protocol version 1 is an insecure implementation of the SSH protocol and has many well-known vulnerability exploits. Exploits of the SSH daemon could provide immediate root access to the system. high AC-17(2),AC-17(a),CM-6(a),IA-5(1)(c),MA-4(6),SC-13 NaN 5.2.2 SRG-OS-000112 Configure OpenSSH Server if Necessary
CCE-27556-0 Limit Users' SSH Access configure via /etc/ssh/sshd_config By default, the SSH configuration allows any user with an account to access the system. In order to specify the users that are allowed to login via SSH and deny all other users, add or correct the following line in the /etc/ssh/sshd_config file: DenyUsers USER1 USER2 Where USER1 and USER2 are valid user names. Specifying which accounts are allowed SSH access into the system reduces the possibility of unauthorized access to the system. unknown AC-3,CM-6(a) NaN NaN NaN Configure OpenSSH Server if Necessary
CCE-26282-4 Set SSH Client Alive Max Count 0 via /etc/ssh/sshd_config To ensure the SSH idle timeout occurs precisely when the ClientAliveInterval is set, edit /etc/ssh/sshd_config as follows: ClientAliveCountMax This ensures a user login will be terminated as soon as the ClientAliveInterval is reached. medium AC-12,AC-17(a),AC-2(5),CM-6(a),SC-10 NaN NaN SRG-OS-000126 Configure OpenSSH Server if Necessary
CCE-26555-3 Use Only FIPS 140-2 Validated Ciphers configure via /etc/ssh/sshd_config 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 /etc/ssh/sshd_config demonstrates use of FIPS-approved ciphers: Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc,aes192-cbc,aes256-cbc The man page sshd_config(5) contains a list of supported ciphers. The rule is parametrized to use the following ciphers: . Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and system data may be compromised. Operating systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules. FIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets industry and government requirements. For government systems, this allows Security Levels 1, 2, 3, or 4 for use on Red Hat Enterprise Linux 6. medium AC-17(2),AC-17(a),CM-6(a),IA-5(1)(c),MA-4(6),SC-12(2),SC-12(3),SC-13 NaN 5.2.10 SRG-OS-000169 Configure OpenSSH Server if Necessary
CCE-27201-3 Do Not Allow SSH Environment Options no via /etc/ssh/sshd_config To ensure users are not able to override environment variables of the SSH daemon, add or correct the following line in /etc/ssh/sshd_config: PermitUserEnvironment no SSH environment options potentially allow users to bypass access restriction in some configurations. medium AC-17(a),CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-000242 Configure OpenSSH Server if Necessary
CCE-26919-1 Set SSH Idle Timeout Interval 600 via /etc/ssh/sshd_config SSH allows administrators to set an idle timeout interval. After this interval has passed, the idle user will be automatically logged out. To set an idle timeout interval, edit the following line in /etc/ssh/sshd_config as follows: ClientAliveInterval The timeout interval is given in seconds. For example, have a timeout of 10 minutes, set interval to 600. If a shorter timeout has already been set for the login shell, that value will preempt any SSH setting made in /etc/ssh/sshd_config. Keep in mind that some processes may stop SSH from correctly detecting that the user is idle. Terminating an idle ssh session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been let unattended. medium AC-12,AC-17(a),AC-17(a),AC-2(5),CM-6(a),CM-6(a),SC-10 NaN NaN SRG-OS-000163 Configure OpenSSH Server if Necessary
CCE-82067-0 Use Only FIPS 140-2 Validated MACs configure via /etc/ssh/sshd_config Limit the MACs to those hash algorithms which are FIPS-approved. The following line in /etc/ssh/sshd_config demonstrates use of FIPS-approved MACs: MACs hmac-sha2-512,hmac-sha2-256,hmac-sha1 The man page sshd_config(5) contains a list of supported MACs. The rule is parametrized to use the following MACs: . DoD Information Systems are required to use FIPS-approved cryptographic hash functions. The only SSHv2 hash algorithms meeting this requirement is SHA2. medium AC-17(2),AC-17(a),CM-6(a),MA-4(6),SC-12(2),SC-12(3),SC-13 NaN 5.2.12 SRG-OS-000125-GPOS-00065,SRG-OS-000250-GPOS-00093,SRG-OS-000394-GPOS-00174 Configure OpenSSH Server if Necessary
CCE-27124-7 Disable SSH Support for .rhosts Files yes via /etc/ssh/sshd_config SSH can emulate the behavior of the obsolete rsh command in allowing users to enable insecure access to their accounts via .rhosts files. To ensure this behavior is disabled, add or correct the following line in /etc/ssh/sshd_config: IgnoreRhosts yes SSH trust relationships mean a compromise on one host can allow an attacker to move trivially to other hosts. medium AC-17(a),CM-6(a),CM-7(a),CM-7(b) FIA_UAU.1 NaN SRG-OS-000106 Configure OpenSSH Server if Necessary
CCE-26977-9 Uninstall squid Package remove via yum The squid package can be removed with the following command: $ sudo yum erase squid If there is no need to make the proxy server software available, removing it provides a safeguard against its activation. unknown NaN NaN NaN NaN Disable Squid if Possible
CCE-27146-0 Disable Squid disable via chkconfig The squid service can be disabled with the following command: $ sudo chkconfig squid off Running proxy server software provides a network-based avenue of attack, and should be removed if not needed. unknown NaN NaN 2.2.13 NaN Disable Squid if Possible
CCE-27021-5 Disable DHCP Client in ifcfg disable via ifcfg For each interface on the system (e.g. eth0), edit /etc/sysconfig/network-scripts/ifcfg-interface and make the following changes: Correct the BOOTPROTO line to read: BOOTPROTO=none Add or correct the following lines, substituting the appropriate values based on your site's addressing scheme: NETMASK=255.255.255.0 IPADDR=192.168.1.2 GATEWAY=192.168.1.1 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. unknown CM-6(a) NaN NaN SRG-OS-999999 Disable DHCP Client
CCE-27120-5 Uninstall DHCP Server Package remove via yum If the system does not need to act as a DHCP server, the dhcp package can be uninstalled. The dhcp package can be removed with the following command: $ sudo yum erase dhcp Removing the DHCP server ensures that it cannot be easily or accidentally reactivated and disrupt network operation. medium CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Disable DHCP Server
CCE-27074-4 Disable DHCP Service disable via chkconfig The dhcpd service should be disabled on any system that does not need to act as a DHCP server. The dhcpd service can be disabled with the following command: $ sudo chkconfig dhcpd off Unmanaged or unintentionally activated DHCP servers may provide faulty information to clients, interfering with the operation of a legitimate site DHCP server if there is one. medium CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Disable DHCP Server
CCE-27077-7 Deny BOOTP Queries deny bootp via /etc/dhcp/dhcpd.conf Unless your network needs to support older BOOTP clients, disable support for the bootp protocol by adding or correcting the global option: deny bootp; The bootp option tells dhcpd to respond to BOOTP queries. If support for this simpler protocol is not needed, it should be disabled to remove attack vectors against the DHCP server. unknown CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Configure DHCP Server
CCE-27106-4 Deny Decline Messages deny declones via /etc/dhcp/dhcpd.conf Edit /etc/dhcp/dhcpd.conf and add or correct the following global option to prevent the DHCP server from responding the DHCPDECLINE messages, if possible: deny declines; The DHCPDECLINE message can be sent by a DHCP client to indicate that it does not consider the lease offered by the server to be valid. By issuing many DHCPDECLINE messages, a malicious client can exhaust the DHCP server's pool of IP addresses, causing the DHCP server to forget old address allocations. unknown CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Configure DHCP Server
CCE-26898-7 Configure Logging configure via /etc/rsyslog.conf Ensure that the following line exists in /etc/rsyslog.conf: daemon.* /var/log/daemon.log Configure logwatch or other log monitoring tools to summarize error conditions reported by the dhcpd process. By default, dhcpd logs notices to the daemon facility. Sending all daemon messages to a dedicated log file is part of the syslog configuration outlined in the Logging and Auditing section unknown AU-12(a),AU-12(c),CM-6(a) NaN NaN NaN Configure DHCP Server
CCE-27049-6 Do Not Use Dynamic DNS ddns-update-style none via /etc/dhcp/dhcpd.conf To prevent the DHCP server from receiving DNS information from clients, edit /etc/dhcp/dhcpd.conf, and add or correct the following global option: ddns-update-style none; The Dynamic DNS protocol is used to remotely update the data served by a DNS server. DHCP servers can use Dynamic DNS to publish information about their clients. This setup carries security risks, and its use is not recommended. If Dynamic DNS must be used despite the risks it poses, it is critical that Dynamic DNS transactions be protected using TSIG or some other cryptographic authentication mechanism. See dhcpd.conf(5) for more information about protecting the DHCP server from passing along malicious DNS data from its clients. unknown CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Configure DHCP Server
CCE-27515-6 Uninstall Sendmail Package remove via yum Sendmail is not the default mail transfer agent and is not installed by default. The sendmail package can be removed with the following command: $ sudo yum erase sendmail 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. medium CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-999999 Mail Server Software
CCE-26325-1 Enable Postfix Service enable via chkconfig 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 postfix service can be enabled with the following command: $ sudo chkconfig --level 2345 postfix on Local mail delivery is essential to some system maintenance and notification tasks. unknown NaN NaN NaN SRG-OS-999999 Mail Server Software
CCE-27508-1 Configure SMTP Greeting Banner configure via /etc/postfix/main.cf Edit /etc/postfix/main.cf, and add or correct the following line, substituting some other wording for the banner information if you prefer: smtpd_banner = $myhostname ESMTP The default greeting banner discloses that the listening mail process is Postfix. When remote mail senders connect to the MTA on port 25, they are greeted by an initial banner as part of the SMTP dialogue. This banner is necessary, but it frequently gives away too much information, including the MTA software which is in use, and sometimes also its version number. Remote mail senders do not need this information in order to send mail, so the banner should be changed to reveal only the hostname (which is already known and may be useful) and the word ESMTP, to indicate that the modern SMTP protocol variant is supported. low AC-8(a),AC-8(c) NaN NaN NaN Configure Postfix if Necessary
CCE-80508-5 Configure System to Forward All Mail For The Root Account configure via /etc/aliases Set up an alias for root that forwards to a monitored email address: $ sudo echo "root: " >> /etc/aliases $ sudo newaliases A number of system services utilize email messages sent to the root user to notify system administrators of active or impending issues. These messages must be forwarded to at least one monitored email address. low CM-6(a) NaN NaN SRG-OS-999999 Configure SMTP For Mail Clients
CCE-26780-7 Disable Postfix Network Listening inet_interfaces = loopback-only via /etc/postfix/main.cf Edit the file /etc/postfix/main.cf to ensure that only the following inet_interfaces line appears: inet_interfaces = This ensures postfix accepts mail messages (such as cron job reports) from the local system only, and not from the network, which protects it from network attack. medium CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-000096 Configure SMTP For Mail Clients
CCE-27189-0 Configure Certificate Directives for LDAP Use of TLS configure via /etc/pam_ldap.conf Ensure a copy of a trusted CA certificate has been placed in the file /etc/pki/tls/CA/cacert.pem. Configure LDAP to enforce TLS use and to trust certificates signed by that CA. First, edit the file /etc/pam_ldap.conf, and add or correct either of the following lines: tls_cacertdir /etc/pki/tls/CA or tls_cacertfile /etc/pki/tls/CA/cacert.pem Then review the LDAP server and ensure TLS has been configured. 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. medium CM-6(a) NaN NaN NaN Configure OpenLDAP Clients
CCE-26690-8 Configure LDAP Client to Use TLS For All Transactions verify via /etc/pam_ldap.conf This check verifies cryptography has been implemented to protect the integrity of remote LDAP authentication sessions. To determine if LDAP is being used for authentication, use the following command: $ sudo grep -i useldapauth /etc/sysconfig/authconfig If USELDAPAUTH=yes, then LDAP is being used. To check if LDAP is configured to use TLS, use the following command: $ sudo grep -i ssl /etc/pam_ldap.conf Without cryptographic integrity protections, information can be altered by unauthorized users without detection. The ssl directive specifies whether to use TLS or not. If not specified it will default to no. It should be set to start_tls rather than doing LDAP over SSL. medium AC-17(2),AC-17(a),CM-6(a),SC-12(a),SC-12(b) NaN NaN SRG-OS-000250-GPOS-00093 Configure OpenLDAP Clients
CCE-26858-1 Uninstall openldap-servers Package remove via yum The openldap-servers RPM is not installed by default on a Red Hat Enterprise Linux 6 system. 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. 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. low CM-6(a),CM-7(a),CM-7(b) NaN NaN SRG-OS-999999 Configure OpenLDAP Server
CCE-27030-6 Uninstall bind Package remove via yum The named service is provided by the bind package. The bind package can be removed with the following command: $ sudo yum erase bind If there is no need to make DNS server software available, removing it provides a safeguard against its activation. low CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Disable DNS Server
CCE-26873-0 Disable named Service disable via chkconfig The named service can be disabled with the following command: $ sudo chkconfig named off All network services involve some risk of compromise due to implementation flaws and should be disabled if possible. medium CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Disable DNS Server
CCE-27528-9 Disable Zone Transfers from the Nameserver disable via /etc/named.conf Is it necessary for a secondary nameserver to receive zone data via zone transfer from the primary server? If not, follow the instructions in this section. If so, see the next section for instructions on protecting zone transfers. Add or correct the following directive within /etc/named.conf: options { allow-transfer { none; }; ... } If both the primary and secondary nameserver are under your control, or if you have only one nameserver, it may be possible to use an external configuration management mechanism to distribute zone updates. In that case, it is not necessary to allow zone transfers within BIND itself, so they should be disabled to avoid the potential for abuse. unknown NaN NaN NaN NaN Protect DNS Data from Tampering or Attack
CCE-27496-9 Authenticate Zone Transfers configure via /etc/named.conf If it is necessary for a secondary nameserver to receive zone data via zone transfer from the primary server, follow the instructions here. Use dnssec-keygen to create a symmetric key file in the current directory: $ cd /tmp $ sudo dnssec-keygen -a HMAC-MD5 -b 128 -n HOST dns.example.com Kdns.example.com .+aaa +iiiii This output is the name of a file containing the new key. Read the file to find the base64-encoded key string: $ sudo cat Kdns.example.com .+NNN +MMMMM .key dns.example.com IN KEY 512 3 157 base64-key-string Add the directives to /etc/named.conf on the primary server: key zone-transfer-key { algorithm hmac-md5; secret "base64-key-string "; }; zone "example.com " IN { type master; allow-transfer { key zone-transfer-key; }; ... }; Add the directives below to /etc/named.conf on the secondary nameserver: key zone-transfer-key { algorithm hmac-md5; secret "base64-key-string "; }; server IP-OF-MASTER { keys { zone-transfer-key; }; }; zone "example.com " IN { type slave; masters { IP-OF-MASTER ; }; ... }; The BIND transaction signature (TSIG) functionality allows primary and secondary nameservers to use a shared secret to verify authorization to perform zone transfers. This method is more secure than using IP-based limiting to restrict nameserver access, since IP addresses can be easily spoofed. However, if you cannot configure TSIG between your servers because, for instance, the secondary nameserver is not under your control and its administrators are unwilling to configure TSIG, you can configure an allow-transfer directive with numerical IP addresses or ACLs as a last resort. medium CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Protect DNS Data from Tampering or Attack
CCE-27105-6 Disable Dynamic Updates disable via /etc/named.conf Is there a mission-critical reason to enable the risky dynamic update functionality? If not, edit /etc/named.conf. For each zone specification, correct the following directive if necessary: zone "example.com " IN { allow-update { none; }; ... }; Dynamic updates allow remote servers to add, delete, or modify any entries in your zone file. Therefore, they should be considered highly risky, and disabled unless there is a very good reason for their use. If dynamic updates must be allowed, IP-based ACLs are insufficient protection, since they are easily spoofed. Instead, use TSIG keys (see the previous section for an example), and consider using the update-policy directive to restrict changes to only the precise type of change needed. unknown NaN NaN NaN NaN Protect DNS Data from Tampering or Attack
}; The BIND transaction signature (TSIG) functionality allows primary and secondary nameservers to use a shared secret to verify authorization to perform zone transfers. This method is more secure than using IP-based limiting to restrict nameserver access, since IP addresses can be easily spoofed. However, if you cannot configure TSIG between your servers because, for instance, the secondary nameserver is not under your control and its administrators are unwilling to configure TSIG, you can configure an allow-transfer directive with numerical IP addresses or ACLs as a last resort. medium CM-6(a),CM-7(a),CM-7(b) NaN NaN NaN Protect DNS Data from Tampering or Attack CCE-27105-6 Disable Dynamic Updates disable via /etc/named.conf Is there a mission-critical reason to enable the risky dynamic update functionality? If not, edit /etc/named.conf. For each zone specification, correct the following directive if necessary: zone &#34;example.com &#34; IN { allow-update { none; }; ... }; Dynamic updates allow remote servers to add, delete, or modify any entries in your zone file. Therefore, they should be considered highly risky, and disabled unless there is a very good reason for their use. If dynamic updates must be allowed, IP-based ACLs are insufficient protection, since they are easily spoofed. Instead, use TSIG keys (see the previous section for an example), and consider using the update-policy directive to restrict changes to only the precise type of change needed. unknown NaN NaN NaN NaN Protect DNS Data from Tampering or Attack