STIGhubSTIGhub
STIGhub— A free STIG search and compliance tool·STIGs updated 7 hours ago
Powered by Pylon·Privacy·Terms·Feedback·© 2026 Beacon Cloud Solutions, Inc.
← Back to Rancher Government Solutions (RGS) Harvester Government GPOS Security Technical Implementation Guide

V-285671

CAT II (Medium)

Operating systems must prevent unauthorized and unintended information transfer via shared system resources.

Rule ID

SV-285671r1272693_rule

STIG

Rancher Government Solutions (RGS) Harvester Government GPOS Security Technical Implementation Guide

Version

V1R1

CCIs

CCI-001090

Discussion

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, 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 DoW 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.

Check Content

Verify the Harvester OS enforces protection against unauthorized and unintended information transfer via shared system resources. Inspect World-Writable Directories in "/tmp".

1. Access the node terminal with appropriate privileges and execute the following command:

find /tmp -type d -perm -002 -exec ls -ld {} \;

Example output:
drwxrwxrwt 1 root root 4096 Jun 14 06:45 /tmp

2. Review each returned directory and verify the following:

The directory has the sticky bit set, indicated by a "t" in the final position of the permissions string (e.g., drwxrwxrwt)
OR
The directory is authorized and documented to have world-writable permissions.

If any world-writable directory under "/tmp" does 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

Configure the Harvester OS to prevent unauthorized and unintended information transfer via shared system resources by ensuring the sticky bit is set on all world-writable directories.

1. Access the node terminal with appropriate privileges and identify world-writable directories that do not have the sticky bit set:

find /tmp -type d -perm -002 ! -perm -1000 -exec ls -ld {} \;

2. For each directory identified, set the sticky bit using the following command:

chmod 1777 <directory_path>