Information
Administrators may delete users or groups from the system and neglect to remove all files and/or directories owned by those users or groups.
A new user or group who is assigned a deleted user's user ID or group ID may then end up "owning" a deleted user or group's files, and thus have more access on the system than was intended.
Solution
Set ownership and group ownership of these files and/or directories to an active user on the system:
# /usr/bin/chown <owner> <file>
# /usr/bin/chgrp <group> <file>
- OR -
Remove the file/directory:
# [[ -f <file> ]] && /usr/bin/rm -f <file>
# [[ -d <file> ]] && /usr/bin/rmdir <file>