From b8064bc5def38b4e098f4f09c94489949a42fab3 Mon Sep 17 00:00:00 2001 From: Michael Boelen Date: Tue, 14 May 2024 06:50:26 +0000 Subject: [PATCH] Don't reset status of malware scanner, as there might be two available. Small change to format --- include/tests_malware | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/include/tests_malware b/include/tests_malware index 7d6f7baf..0857ef43 100644 --- a/include/tests_malware +++ b/include/tests_malware @@ -46,18 +46,19 @@ TRENDMICRO_DSA_DAEMON_RUNNING=0 # ################################################################################# -# Test : MALW-3274 -# Description : Check for installed tool (McAfee VirusScan for Command Line) -Register --test-no MALW-3274 --weight L --network NO --category security --description "Check for McAfee VirusScan Command Line" -if [ ${SKIPTEST} -eq 0 ]; then - LogText "Test: checking presence McAfee VirusScan for Command Line" - if [ -x /usr/local/uvscan/uvscan ]; then - Display --indent 2 --text "- ${GEN_CHECKING} McAfee VirusScan for Command Line" --result "${STATUS_FOUND}" --color RED - LogText "Result: Found ${MCAFEECLBINARY}" - MALWARE_SCANNER_INSTALLED=0 - AddHP 0 2 - LogText "Result: McAfee Antivirus for Linux has been deprecated as of 1 Oct 2023 and will not receive updates. Please use another antivirus instead." -fi +# + # Test : MALW-3274 + # Description : Check for installed tool (McAfee VirusScan for Command Line) + Register --test-no MALW-3274 --weight L --network NO --category security --description "Check for McAfee VirusScan Command Line" + if [ ${SKIPTEST} -eq 0 ]; then + LogText "Test: checking presence McAfee VirusScan for Command Line" + if [ -x /usr/local/uvscan/uvscan ]; then + Display --indent 2 --text "- ${GEN_CHECKING} McAfee VirusScan for Command Line (deprecated)" --result "${STATUS_FOUND}" --color RED + LogText "Result: Found ${MCAFEECLBINARY}" + AddHP 0 2 + LogText "Result: McAfee Antivirus for Linux has been deprecated as of 1 Oct 2023 and will not receive updates. Please use another antivirus instead." + fi + fi ################################################################################# # # Test : MALW-3275