Finding ID | Version | Rule ID | IA Controls | Severity |
---|---|---|---|---|
V-22450 | GEN005350 | SV-26728r1_rule | ECLP-1 | Medium |
Description |
---|
The ability to read the MIB file could impart special knowledge to an intruder or malicious user about the ability to extract compromising information about the system or network. |
STIG | Date |
---|---|
Solaris 9 SPARC Security Technical Implementation Guide | 2014-01-08 |
Check Text ( C-27746r1_chk ) |
---|
Check the file permissions for the MIB files. # find / -name *.mib -print # ls -lL [mib file] If the permissions include a "+", the file has an extended ACL, this is a finding. |
Fix Text (F-23978r1_fix) |
---|
Remove the extended ACL from the file. # getfacl [mib file] Remove each ACE returned. # setfacl -d [ACE] [mib file] |