From afba58e7433140e76736bc9dc539e8b7cb7e6756 Mon Sep 17 00:00:00 2001 From: Michael Boelen Date: Wed, 10 Jul 2019 20:10:31 +0200 Subject: [PATCH] [PROC-3802] test for presence of prelink tooling --- include/tests_memory_processes | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/include/tests_memory_processes b/include/tests_memory_processes index 49fbd7c4..cde405c3 100644 --- a/include/tests_memory_processes +++ b/include/tests_memory_processes @@ -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