From bf197ffd7fb949adcbc00b1136c6d3cf6bd3001a Mon Sep 17 00:00:00 2001 From: Stefan Baumgartner Date: Sun, 17 Sep 2023 10:24:52 +0200 Subject: [PATCH] Update tests_malware Fix incorrect "IsRunning" invocations for SentinelOne detection. --- include/tests_malware | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/tests_malware b/include/tests_malware index 9798fbff..87a721bc 100644 --- a/include/tests_malware +++ b/include/tests_malware @@ -234,9 +234,9 @@ # SentinelOne LogText "Text: checking process sentineld (SentinelOne)" - if isRunning "sentineld"; then SENTINELONE_SCANNER_RUNNING=1; fi # macOS - if isRunning "s1-agent"; then SENTINELONE_SCANNER_RUNNING=1; fi # Linux - if isRunning "SentinelAgent"; then SENTINELONE_SCANNER_RUNNING=1; fi # Windows + if IsRunning "sentineld"; then SENTINELONE_SCANNER_RUNNING=1; fi # macOS + if IsRunning "s1-agent"; then SENTINELONE_SCANNER_RUNNING=1; fi # Linux + if IsRunning "SentinelAgent"; then SENTINELONE_SCANNER_RUNNING=1; fi # Windows if [ ${SENTINELONE_SCANNER_RUNNING} -eq 1 ]; then FOUND=1 if IsVerbose; then Display --indent 2 --text "- ${GEN_CHECKING} SentinelOne" --result "${STATUS_FOUND}" --color GREEN; fi