Information
This /etc/security directory contains the user and group configuration files and the encrypted passwords.
Rationale:
The /etc/security directory contains sensitive files such as /etc/security/passwd, /etc/security/group. It must be secured from unauthorized access and modifications.
Solution
Remove world read, write and execute access and group write access from /etc/security:
chown -R root:security /etc/security
chmod u=rwx,g=rx,o= /etc/security
chmod -R go-w,o-rx /etc/security
Default Value:
N/A