lynis/include/tests_malware

214 lines
8.2 KiB
Plaintext
Raw Normal View History

2014-08-26 17:33:55 +02:00
#!/bin/sh
#################################################################################
#
# Lynis
# ------------------
#
# Copyright 2007-2015, Michael Boelen (michael.boelen@cisofy.com), The Netherlands
2014-09-25 19:08:47 +02:00
# Web site: http://cisofy.com
2014-08-26 17:33:55 +02:00
#
# Lynis comes with ABSOLUTELY NO WARRANTY. This is free software, and you are
# welcome to redistribute it under the terms of the GNU General Public License.
# See LICENSE file for usage of this software.
#
#################################################################################
#
# Malware scanners
#
#################################################################################
#
InsertSection "Software: Malware scanners"
#
#################################################################################
#
CLAMD_RUNNING=0
2015-05-04 13:37:36 +02:00
MCAFEE_SCANNER_RUNNING=0
2014-08-26 17:33:55 +02:00
MALWARE_SCANNER_INSTALLED=0
2015-05-04 13:37:36 +02:00
SOPHOS_SCANNER_RUNNING=0
2014-08-26 17:33:55 +02:00
#
#################################################################################
#
# Test : MALW-3275
# Description : Check for installed tool (chkrootkit)
Register --test-no MALW-3275 --weight L --network NO --description "Check for chkrootkit"
if [ ${SKIPTEST} -eq 0 ]; then
logtext "Test: checking presence chkrootkit"
if [ ! "${CHKROOTKITBINARY}" = "" ]; then
2014-09-15 12:01:09 +02:00
Display --indent 2 --text "- Checking chkrootkit" --result "FOUND" --color GREEN
2014-08-26 17:33:55 +02:00
logtext "Result: Found ${CHKROOTKITBINARY}"
MALWARE_SCANNER_INSTALLED=1
AddHP 2 2
else
logtext "Result: chkrootkit not found"
fi
fi
#
#################################################################################
#
# Test : MALW-3276
# Description : Check for installed tool (Rootkit Hunter)
Register --test-no MALW-3276 --weight L --network NO --description "Check for Rootkit Hunter"
if [ ${SKIPTEST} -eq 0 ]; then
logtext "Test: checking presence Rootkit Hunter"
if [ ! "${RKHUNTERBINARY}" = "" ]; then
2014-09-15 12:01:09 +02:00
Display --indent 2 --text "- Checking Rootkit Hunter" --result "FOUND" --color GREEN
2014-08-26 17:33:55 +02:00
logtext "Result: Found ${RKHUNTERBINARY}"
MALWARE_SCANNER_INSTALLED=1
AddHP 2 2
else
logtext "Result: Rootkit Hunter not found"
fi
fi
#
#################################################################################
#
# Test : MALW-3280
# Description : Check if an anti-virus tool is installed
2015-04-01 14:45:12 +02:00
Register --test-no MALW-3280 --weight L --network NO --description "Check if anti-virus tool is installed"
2014-08-26 17:33:55 +02:00
if [ ${SKIPTEST} -eq 0 ]; then
FOUND=0
logtext "Test: checking process cma or cmdagent (McAfee)"
# cma is too generic to match on, so we want to ensure that it is related to McAfee first
if [ -x /opt/McAfee/cma/bin/cma ]; then
IsRunning cma
2015-05-04 13:37:36 +02:00
if [ ${RUNNING} -eq 1 ]; then MCAFEE_SCANNER_RUNNING=1; fi
else
IsRunning cmdagent
2015-05-04 13:37:36 +02:00
if [ ${RUNNING} -eq 1 ]; then MCAFEE_SCANNER_RUNNING=1; fi
fi
2015-05-04 13:37:36 +02:00
if [ ${MCAFEE_SCANNER_RUNNING} -eq 1 ]; then
2014-08-26 17:33:55 +02:00
FOUND=1
Display --indent 2 --text "- Checking McAfee" --result "FOUND" --color GREEN
logtext "Result: Found McAfee"
MALWARE_SCANNER_INSTALLED=1
AddHP 2 2
fi
2015-05-04 13:37:36 +02:00
# Sophos savscand/SophosScanD
logtext "Test: checking process savscand"
IsRunning savscand
if [ ${RUNNING} -eq 1 ]; then
FOUND=1
SOPHOS_SCANNER_RUNNING=1;
fi
2014-08-26 17:33:55 +02:00
logtext "Test: checking process SophosScanD"
IsRunning SophosScanD
if [ ${RUNNING} -eq 1 ]; then
FOUND=1
2015-05-04 13:37:36 +02:00
SOPHOS_SCANNER_RUNNING=1;
fi
if [ ${SOPHOS_SCANNER_RUNNING} -eq 1 ]; then
2014-08-26 17:33:55 +02:00
Display --indent 2 --text "- Checking Sophos" --result "FOUND" --color GREEN
logtext "Result: Found Sophos"
MALWARE_SCANNER_INSTALLED=1
AddHP 2 2
fi
if [ ${FOUND} -eq 0 ]; then
logtext "Result: no commercial anti-virus tool found"
AddHP 0 3
fi
fi
#
#################################################################################
#
# Test : MALW-3282
# Description : Check if clamscan is installed
Register --test-no MALW-3282 --weight L --network NO --description "Check for clamscan"
if [ ${SKIPTEST} -eq 0 ]; then
logtext "Test: checking presence clamscan"
if [ ! "${CLAMSCANBINARY}" = "" ]; then
2014-09-15 12:01:09 +02:00
Display --indent 2 --text "- Checking ClamAV scanner" --result "FOUND" --color GREEN
2014-08-26 17:33:55 +02:00
logtext "Result: Found ${CLAMSCANBINARY}"
MALWARE_SCANNER_INSTALLED=1
AddHP 2 2
else
logtext "Result: clamscan couldn't be found"
fi
fi
#
#################################################################################
#
# Test : MALW-3284
# Description : Check running clamd process
Register --test-no MALW-3284 --weight L --network NO --description "Check for clamd"
if [ ${SKIPTEST} -eq 0 ]; then
logtext "Test: checking running ClamAV daemon (clamd)"
2014-09-19 01:10:43 +02:00
IsRunning clamd
if [ ${RUNNING} -eq 1 ]; then
2014-09-15 12:01:09 +02:00
Display --indent 2 --text "- Checking ClamAV daemon" --result "FOUND" --color GREEN
2014-08-26 17:33:55 +02:00
logtext "Result: found running clamd process"
MALWARE_SCANNER_INSTALLED=1
CLAMD_RUNNING=1
else
logtext "Result: clamd not running"
fi
fi
#
#################################################################################
#
# Test : MALW-3286
# Description : Check running freshclam if clamd process is running
if [ ${CLAMD_RUNNING} -eq 1 ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
Register --test-no MALW-3286 --preqs-met ${PREQS_MET} --weight L --network NO --description "Check for freshclam"
if [ ${SKIPTEST} -eq 0 ]; then
logtext "Test: checking running freshclam daemon"
2014-09-19 01:10:43 +02:00
IsRunning freshclam
if [ ${RUNNING} -eq 1 ]; then
2014-09-15 12:01:09 +02:00
Display --indent 4 --text "- Checking freshclam" --result "FOUND" --color GREEN
2014-08-26 17:33:55 +02:00
logtext "Result: found running freshclam process"
AddHP 2 2
else
2014-09-15 12:01:09 +02:00
Display --indent 4 --text "- Checking freshclam" --result "SUGGESTION" --color YELLOW
2014-08-26 17:33:55 +02:00
logtext "Result: freshclam is not running"
ReportSuggestion ${TEST_NO} "Confirm that freshclam is properly configured and keeps updating the ClamAV database"
fi
fi
#
#################################################################################
#
2014-09-25 19:08:47 +02:00
# Test : MALW-3288
# Description : Check for ClamXav (Mac OS X)
#
#################################################################################
#
Register --test-no MALW-3288 --weight L --network NO --description "Check for ClamXav"
if [ ${SKIPTEST} -eq 0 ]; then
if [ -d /Applications/ClamXav.app/Contents/Resources/ScanningEngine/bin/ ]; then
CLAMSCANBINARY=`ls /Applications/ClamXav.app/Contents/Resources/ScanningEngine/bin/ 2> /dev/null | grep 'clamscan'`
if [ ! "${CLAMSCANBINARY}" = "" ]; then
logtext "Result: Found ClamXav clamscan installed"
Display --indent 2 --text "- Checking presence of ClamXav AV scanner" --result "FOUND" --color GREEN
MALWARE_SCANNER_INSTALLED=1
AddHP 3 3
else
logtext "Result: ClamXav malware scanner not found"
AddHP 0 3
fi
else
logtext "Result: could not find ClamXav location"
fi
fi
#
#################################################################################
#
# Test : MALW-3204
2014-09-15 12:01:09 +02:00
# Description : Check for LMD
#
#################################################################################
2014-08-26 17:33:55 +02:00
#
#################################################################################
#
# Other projects: maldetect (rfxn)
#
#################################################################################
#
report "malware_scanner_installed=${MALWARE_SCANNER_INSTALLED}"
2015-03-25 15:55:46 +01:00
2014-08-26 17:33:55 +02:00
wait_for_keypress
#
#================================================================================
2015-03-25 15:55:46 +01:00
# Lynis - Copyright 2007-2015, Michael Boelen, CISOfy - https://cisofy.com