UCF STIG Viewer Logo

The sticky bit must be set on all SUSE operating system world-writable directories.


Overview

Finding ID Version Rule ID IA Controls Severity
V-217147 SLES-12-010460 SV-217147r603262_rule Medium
Description
Preventing unauthorized information transfers mitigates the risk of information, including encrypted representations of information, produced by the actions of prior users/roles (or the actions of processes acting on behalf of prior users/roles) from being available to any current users/roles (or current processes) that obtain access to shared system resources (e.g., registers, main memory, and hard disks) after those resources have been released back to information systems. The control of information in shared resources is also commonly referred to as object reuse and residual information protection. This requirement generally applies to the design of an information technology product, but it can also apply to the configuration of particular information system components that are, or use, such products. This can be verified by acceptance/validation processes in DoD or other government agencies. There may be shared resources with configurable protections (e.g., files in storage) that may be assessed on specific information system components.
STIG Date
SLES 12 Security Technical Implementation Guide 2022-09-13

Details

Check Text ( C-18375r369597_chk )
Verify the SUSE operating system prevents unauthorized and unintended information transfer via the shared system resources.

Note: The example below should be repeated for each locally defined partition.

Check that world-writable directories have the sticky bit set with the following command:

# sudo find / -xdev -perm -002 -type d -fstype xfs -exec ls -lLd {} \;

256 0 drwxrwxrwt 1 root root 4096 Jun 14 06:45 /tmp

If any of the returned directories do not have the sticky bit set, or are not documented as having the write permission for the other class, this is a finding.
Fix Text (F-18373r369598_fix)
Configure the SUSE operating system shared system resources to prevent any unauthorized and unintended information transfer by setting the sticky bit for all world-writable directories.

An example of a world-writable directory is "/tmp" directory. Set the sticky bit on all of the world-writable directories (using the "/tmp" directory as an example) with the following command:

# sudo chmod 1777 /tmp

For every world-writable directory, replace "/tmp" in the command above with the world-writable directory that does not have the sticky bit set.