STIGhubSTIGhub
STIGsRMF ControlsCompare

STIGhub

A free tool to search and browse the entire DISA STIG library. Saves up to 75% in security compliance research time.

Navigation

  • Browse STIGs
  • Search
  • RMF Controls
  • Compare Versions

Resources

  • About
  • Release Notes
  • VPAT
  • DISA STIG Library
STIGs updated 6 hours ago
Powered by Pylon
© 2026 Beacon Cloud Solutions, Inc. All rights reserved.
← Back to Tri-Lab Operating System Stack (TOSS) 5 Security Technical Implementation Guide

V-282760

CAT II (Medium)

All TOSS local interactive user home directories must have mode 0770 or less permissive.

Rule ID

SV-282760r1201260_rule

STIG

Tri-Lab Operating System Stack (TOSS) 5 Security Technical Implementation Guide

Version

V1R1

CCIs

CCI-000366

Discussion

Users' home directories/folders may contain information of a sensitive nature. Nonprivileged users should coordinate any information sharing with a system administrator (SA) through shared resources.

Check Content

Verify TOSS 5 limits the ability of nonprivileged users to grant other users direct access to the contents of their home directories/folders.

Ensure the user permissions on all user home directories is set to 770 permissions using the following command:

$ find $(awk -F: '($3>=1000)&&($7 !~ /nologin/){print $6}' /etc/passwd) -maxdepth 0 -not -perm 770 -ls  2> /dev/null

If there is any output, this is a finding.

Fix Text

Change the mode of interactive user's home directories to "0770." using the following command:

Note: The example will be for the user "smithj."

$ sudo chmod 0770 /home/smithj