2014-08-26 15:33:55 +00:00
#!/bin/sh
#################################################################################
#
# Lynis
# ------------------
#
2016-03-13 15:00:39 +00:00
# Copyright 2007-2013, Michael Boelen
2019-01-31 13:47:35 +00:00
# Copyright 2007-2019, CISOfy
2016-03-13 15:00:39 +00:00
#
# Website : https://cisofy.com
# Blog : http://linux-audit.com
# GitHub : https://github.com/CISOfy/lynis
2014-08-26 15:33:55 +00: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.
#
#################################################################################
#
InsertSection "Hardening"
# COMPILER_INSTALLED is initialised before
HARDEN_COMPILERS_NEEDED=0
#
#################################################################################
#
# Test : HRDN-7220
# Description : Check for installed compilers
2014-12-05 12:28:53 +00:00
# Notes : No suggestion for hardening compilers, as HRDN-7222 will take care of that
2016-07-24 15:22:00 +00:00
Register --test-no HRDN-7220 --weight L --network NO --category security --description "Check if one or more compilers are installed"
2014-08-26 15:33:55 +00:00
if [ ${SKIPTEST} -eq 0 ]; then
2015-12-21 20:17:15 +00:00
LogText "Test: Check if one or more compilers can be found on the system"
2014-09-15 10:01:09 +00:00
if [ ${COMPILER_INSTALLED} -eq 0 ]; then
2015-12-21 20:17:15 +00:00
LogText "Result: no compilers found"
2016-06-18 09:14:01 +00:00
Display --indent 4 --text "- Installed compiler(s)" --result "${STATUS_NOT_FOUND}" --color GREEN
2014-09-15 10:01:09 +00:00
AddHP 3 3
2016-09-10 14:12:44 +00:00
else
2016-08-25 13:31:33 +00:00
LogText "Result: found installed compiler. See top of logfile which compilers have been found or use ${GREPBINARY} to filter on 'compiler'"
2016-06-18 09:14:01 +00:00
Display --indent 4 --text "- Installed compiler(s)" --result "${STATUS_FOUND}" --color RED
2014-09-15 10:01:09 +00:00
AddHP 1 3
fi
2014-08-26 15:33:55 +00:00
fi
#
#################################################################################
#
# Test : HRDN-7222
# Description : Check for permissions of installed compilers
2016-07-24 15:22:00 +00:00
Register --test-no HRDN-7222 --weight L --network NO --category security --description "Check compiler permissions"
2014-08-26 15:33:55 +00:00
if [ ${SKIPTEST} -eq 0 ]; then
2015-12-21 20:17:15 +00:00
LogText "Test: Check if one or more compilers can be found on the system"
2014-09-15 10:01:09 +00:00
HARDEN_COMPILERS_NEEDED=0
if [ ${COMPILER_INSTALLED} -eq 0 ]; then
2015-12-21 20:17:15 +00:00
LogText "Result: no compilers found"
2017-04-30 15:59:35 +00:00
else
2018-03-04 16:52:15 +00:00
# TODO - c89 c99 cpp ld
2019-03-05 18:03:44 +00:00
TEST_BINARIES="${ASBINARY} ${CCBINARY} ${CLANGBINARY} ${GCCBINARY}"
2018-03-04 16:52:15 +00:00
for ITEM in ${TEST_BINARIES}; do
FILE="${ITEM}"
LogText "Test: Check file permissions for ${ITEM}"
ShowSymlinkPath ${ITEM}
if [ ! -z "${SYMLINK}" ]; then
FILE="${SYMLINK}"
2014-08-26 15:33:55 +00:00
fi
2018-03-04 16:52:15 +00:00
if IsWorldExecutable ${FILE}; then
LogText "Binary: found ${FILE} (world executable)"
Report "compiler_world_executable[]=${FILE}"
2014-08-26 15:33:55 +00:00
AddHP 2 3
HARDEN_COMPILERS_NEEDED=1
2016-10-26 10:55:46 +00:00
else
2014-08-26 15:33:55 +00:00
AddHP 3 3
fi
2018-03-04 16:52:15 +00:00
done
2014-09-15 10:01:09 +00:00
# Report suggestion is one or more compilers can be better hardened
if [ ${HARDEN_COMPILERS_NEEDED} -eq 1 ]; then
2015-12-21 20:17:15 +00:00
LogText "Result: at least one compiler could be better hardened by restricting executable access to root or group only"
2014-10-23 21:06:46 +00:00
ReportSuggestion ${TEST_NO} "Harden compilers like restricting access to root user only"
2014-09-15 10:01:09 +00:00
fi
fi
2014-08-26 15:33:55 +00:00
fi
#
#################################################################################
#
# Test : HRDN-7230
# Description : Check for installed malware scanners
2016-07-24 15:22:00 +00:00
Register --test-no HRDN-7230 --weight L --network NO --category security --description "Check for malware scanner"
2014-08-26 15:33:55 +00:00
if [ ${SKIPTEST} -eq 0 ]; then
2015-12-21 20:17:15 +00:00
LogText "Test: Check if a malware scanner is installed"
2014-09-15 10:01:09 +00:00
if [ ${MALWARE_SCANNER_INSTALLED} -eq 1 ]; then
2015-12-21 20:17:15 +00:00
LogText "Result: found at least one malware scanner"
2016-06-18 09:14:01 +00:00
Display --indent 4 --text "- Installed malware scanner" --result "${STATUS_FOUND}" --color GREEN
2014-09-15 10:01:09 +00:00
AddHP 3 3
2016-08-13 07:30:16 +00:00
else
2015-12-21 20:17:15 +00:00
LogText "Result: no malware scanner found"
2016-10-27 09:45:21 +00:00
if [ "${MACHINE_ROLE}" = "personal" ]; then
2016-10-26 10:55:46 +00:00
Display --indent 4 --text "- Installed malware scanner" --result "${STATUS_NOT_FOUND}" --color YELLOW
2016-10-26 10:36:31 +00:00
else
2016-10-26 10:55:46 +00:00
Display --indent 4 --text "- Installed malware scanner" --result "${STATUS_NOT_FOUND}" --color RED
2016-10-26 10:36:31 +00:00
fi
2016-08-13 07:30:16 +00:00
ReportSuggestion ${TEST_NO} "Harden the system by installing at least one malware scanner, to perform periodic file system scans" "-" "Install a tool like rkhunter, chkrootkit, OSSEC"
2014-09-15 10:01:09 +00:00
AddHP 1 3
2016-10-26 10:36:31 +00:00
LogText "Result: no malware scanner found"
2014-09-15 10:01:09 +00:00
fi
2014-08-26 15:33:55 +00:00
fi
#
#################################################################################
#
2015-12-21 20:17:15 +00:00
# LogText "--------------------------------------------------------------------"
# LogText "| System part | Preferred value | Actual value | Points |"
# LogText "| [!] Compiler installed | 0 | [${COMPILER_INSTALLED}] | x |"
# LogText "| [V] Malware scanner installed | 1 | [x] | x |"
# LogText "| [V] Packet filter enabled | 1 | [x] | x |"
# LogText "--------------------------------------------------------------------"
# LogText "| [!]: Hardening possible, [V]: Hardening performed, [ ]: Unknown "
# LogText "--------------------------------------------------------------------"
2014-08-26 15:33:55 +00:00
#
#################################################################################
#
2015-12-21 20:17:15 +00:00
Report "compiler_installed=${COMPILER_INSTALLED}"
2016-04-28 10:31:57 +00:00
WaitForKeyPress
2014-08-26 15:33:55 +00:00
#
#================================================================================
2016-03-13 15:03:46 +00:00
# Lynis - Security Auditing and System Hardening for Linux and UNIX - https://cisofy.com