4.4.4 Removal of .rhosts and .netrc files

Warning! Audit Deprecated

This audit has been deprecated and will be removed in a future update.

View Next Audit Version

Information

This recommendation removes all instances of .rhosts and .netrc files from the system.

Rationale:

The .rhosts and .netrc files can be used to circumvent normal login or change control procedures. The existence of such files, with the relevant entries, can allow remote user access to a system bypassing local user and password authentication. Unless required these files will be removed from all user home directories.

Solution

Remove the.rhosts and .netrc files from all user home directories:

find / -name '.netrc' -exec rm {} ;
find / -name '.rhosts' -exec rm {} ;

Default Value:

N/A

See Also

https://workbench.cisecurity.org/benchmarks/7851