UCF STIG Viewer Logo

Local initialization files library search paths must contain only authorized paths.


Overview

Finding ID Version Rule ID IA Controls Severity
V-227683 GEN001901 SV-227683r603266_rule Medium
Description
The library search path environment variable(s) contain a list of directories for the dynamic linker to search to find libraries. If this path includes the current working directory or other relative paths, libraries in these directories may be loaded instead of system libraries. This variable is formatted as a colon-separated list of directories. If there is an empty entry, such as a leading or trailing colon, two consecutive colons, or a single period, this is interpreted as the current working directory. Paths starting with a slash (/) are absolute paths.
STIG Date
Solaris 10 X86 Security Technical Implementation Guide 2022-09-07

Details

Check Text ( C-29845r488630_chk )
NOTE: This command should be used in the BASH shell.

Verify local initialization files have library search path containing only authorized paths.
# cut -d : -f 1 /etc/passwd | xargs -n1 -IUSER sh -c 'grep -l LD_LIBRARY_PATH ~USER/.*'

This variable is formatted as a colon-separated list of directories.

If there is an empty entry, such as a leading or trailing colon, or two consecutive colons, this is a finding.

If an entry begins with a character other than a slash (/), or has not been documented with the ISSO, this is a finding.
Fix Text (F-29833r488631_fix)
Edit the local initialization file and remove the relative path entries from the library search path variables that have not been documented with the ISSO.

Edit the local initialization file and remove any empty entry that is defined.