UCF STIG Viewer Logo

The root user's home directory must not be the root directory (/).


Overview

Finding ID Version Rule ID IA Controls Severity
V-774 GEN000900 SV-37349r2_rule Low
Description
Changing the root home directory to something other than / and assigning it a 0700 protection makes it more difficult for intruders to manipulate the system by reading the files root places in its default directory. It also gives root the same discretionary access control for root's home directory as for the other user home directories.
STIG Date
Red Hat Enterprise Linux 5 Security Technical Implementation Guide 2017-03-01

Details

Check Text ( C-36040r2_chk )
Determine if root is assigned a home directory other than / by listing its home directory.

Procedure:
# awk -F: '($1 == "root") { print $6 }' /etc/passwd

If the root user home directory is /, this is a finding.
Fix Text (F-31284r1_fix)
The root home directory should be something other than / (such as /roothome).

Procedure:
# mkdir /rootdir
# chown root /rootdir
# chgrp root /rootdir
# chmod 700 /rootdir
# cp -r /.??* /rootdir/.

Then, edit the passwd file and change the root home directory to /rootdir. The cp -r /.??* command copies all files and subdirectories of file names beginning with "." into the new root directory, which preserves the previous root environment. Ensure you are in the "/" directory when executing the "cp" command.