UCF STIG Viewer Logo

All public directories must be group-owned by system or an application group.


Overview

Finding ID Version Rule ID IA Controls Severity
V-11990 GEN002540 SV-40066r1_rule ECLP-1 Medium
Description
If a public directory has the sticky bit set and is not group-owned by a system GID, unauthorized users may be able to modify files created by others. 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 and by users for temporary file storage (e.g., /tmp) and for directories requiring global read/write access.
STIG Date
AIX 5.3 SECURITY TECHNICAL IMPLEMENTATION GUIDE 2014-10-03

Details

Check Text ( C-39055r1_chk )
Check the group ownership of public directories.

Procedure:
# find / -type d -perm -1002 -exec ls -ld {} \;

If any public directory is not group-owned by system, sys, bin, or an application group, this is a finding.
Fix Text (F-34154r1_fix)
Change the group ownership of the public directory.

Procedure:
# chgrp system /tmp

(Replace system with a different system group and/or /tmp with a different public directory as necessary.)