AIX must contain no .forward files.

Overview

Finding IDVersionRule IDIA ControlsSeverity
V-215413AIX7-00-003115SV-215413r991589_ruleCCI-000366low
Description
The .forward file allows users to automatically forward mail to another system. Use of .forward files could allow the unauthorized forwarding of mail and could potentially create mail loops which could degrade system performance.
STIGDate
IBM AIX 7.x Security Technical Implementation Guide2024-08-16

Details

Check Text (C-215413r991589_chk)

Search for any ".forward" files on the system using command: # find / -name .forward -print If any ".forward" files are found on the system, this is a finding.

Fix Text (F-16609r294691_fix)

Run the following command to remove all ".forward" files on the system: # find / -name .forward -exec rm -rf {} \;