Rule ID
SV-45178r1_rule
Version
V1R12
CCIs
System backups could be accidentally or maliciously overwritten and destroy the ability to recover the system if a compromise should occur. Unauthorized users could also copy system files.
Check the system for world-writable device files.
Procedure:
# find / -perm -2 -a \( -type b -o -type c \) -exec ls -ld {} \;
If any device file(s) used for backup are writable by users other than root, this is a finding.Use the chmod command to remove the world-writable bit from the backup device files. Procedure: # chmod o-w <back device filename> Document all changes.