Skip to content

All library files must not have extended ACLs.

An XCCDF Rule

Description

Unauthorized access could destroy the integrity of the library files.

ID
SV-215326r991560_rule
Version
AIX7-00-003010
Severity
Medium
References
Updated

Remediation Templates

A Manual Procedure

Remove the extended ACL(s) from the system library file(s) and disable extended permissions using the follow script:

find /usr/lib/security /usr/lib/methods/ -type f | while read file
do
aclget -o /tmp/111.acl $file > /dev/null 2>&1
if [ $? -eq 0 ]; then