UCF STIG Viewer Logo

Local OL 8 initialization files must not execute world-writable programs.


Overview

Finding ID Version Rule ID IA Controls Severity
V-248627 OL08-00-010660 SV-248627r779447_rule Medium
Description
If user start-up files execute world-writable programs, especially in unprotected directories, they could be maliciously modified to destroy user files or otherwise compromise the system at the user level. If the system is compromised at the user level, it is easier to elevate privileges to eventually compromise the system at the root and network level.
STIG Date
Oracle Linux 8 Security Technical Implementation Guide 2022-12-06

Details

Check Text ( C-52061r779445_chk )
Verify that local initialization files do not execute world-writable programs.

Check the system for world-writable files.

The following command will discover and print world-writable files. Run it once for each local partition [PART]:

$ sudo find [PART] -xdev -type f -perm -0002 -print

For all files listed, check for their presence in the local initialization files with the following commands:

Note: The example will be for a system that is configured to create users' home directories in the "/home" directory.

$ sudo grep /home/*/.*

If any local initialization files are found to reference world-writable files, this is a finding.
Fix Text (F-52015r779446_fix)
Set the mode on files being executed by the local initialization files with the following command:

$ sudo chmod 0755