mirror of https://github.com/CISOfy/lynis.git
[PROC-3802] test for presence of prelink tooling
This commit is contained in:
parent
1a57b41bdd
commit
afba58e743
|
@ -116,6 +116,27 @@
|
|||
#
|
||||
#################################################################################
|
||||
#
|
||||
# Test : PROC-3802
|
||||
# Description : Check presence of prelink tooling
|
||||
Register --test-no PROC-3802 --weight L --network NO --category security --description "Check presence of prelink tooling"
|
||||
if [ ${SKIPTEST} -eq 0 ]; then
|
||||
if PackageIsInstalled "prelink"; then
|
||||
LogText "Result: prelink packages is installed"
|
||||
# TODO
|
||||
# - Add item to website with rationale
|
||||
#ReportSuggestion "${TEST_NO}" "Disable and remove prelinking of binaries"
|
||||
AddHP 1 3
|
||||
Display --indent 2 --text "- Search prelink tooling" --result "${STATUS_FOUND}" --color YELLOW
|
||||
else
|
||||
Display --indent 2 --text "- Search prelink tooling" --result "${STATUS_NOT_FOUND}" --color GREEN
|
||||
LogText "Result: prelink package is NOT installed"
|
||||
AddHP 3 3
|
||||
fi
|
||||
fi
|
||||
#
|
||||
#################################################################################
|
||||
#
|
||||
|
||||
|
||||
WaitForKeyPress
|
||||
|
||||
|
|
Loading…
Reference in New Issue