2014-08-26 17:33:55 +02:00
#!/bin/sh
#################################################################################
#
# Lynis
# ------------------
#
2016-03-13 16:00:39 +01:00
# Copyright 2007-2013, Michael Boelen
2021-01-07 15:22:19 +01:00
# Copyright 2007-2021, CISOfy
2016-03-13 16:00:39 +01:00
#
# Website : https://cisofy.com
# Blog : http://linux-audit.com
# GitHub : https://github.com/CISOfy/lynis
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.
#
#################################################################################
#
# Kernel
#
#################################################################################
#
2020-10-22 00:13:42 +02:00
InsertSection "${SECTION_KERNEL_HARDENING}"
2014-08-26 17:33:55 +02:00
#
#################################################################################
#
# Test : KRNL-6000
# Description : Check sysctl parameters
2020-11-09 05:16:51 +01:00
# Sysctl : net.ipv4.icmp_ignore_bogus_error_responses (=1)
2014-08-26 17:33:55 +02:00
if [ ! "${SYSCTL_READKEY}" = "" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
2016-07-24 17:22:00 +02:00
Register --test-no KRNL-6000 --preqs-met ${PREQS_MET} --weight L --network NO --category security --description "Check sysctl key pairs in scan profile"
2014-08-26 17:33:55 +02:00
if [ ${SKIPTEST} -eq 0 ]; then
2016-04-13 16:13:04 +02:00
FOUND=0
2016-08-18 14:35:20 +02:00
DATA_TO_SCAN=""
2014-08-26 17:33:55 +02:00
N=0
2014-09-15 12:01:09 +02:00
Display --indent 2 --text "- Comparing sysctl key pairs with scan profile"
2016-08-18 14:35:20 +02:00
# First scan optional profiles only (ignore default and custom)
2016-04-13 16:13:04 +02:00
for PROFILE in ${PROFILES}; do
2016-08-25 15:31:33 +02:00
FILE=$(echo ${PROFILE} | ${AWKBINARY} -F/ '{print $NF}')
2016-08-18 14:35:20 +02:00
if [ ! "${FILE}" = "default.prf" -a ! "${FILE}" = "custom.prf" ]; then
2016-09-08 21:04:17 +02:00
FIND=$(${GREPBINARY} "^config-data=sysctl;" ${PROFILE} | ${SEDBINARY} 's/ /-space-/g')
2016-08-18 14:35:20 +02:00
DATA_TO_SCAN="${DATA_TO_SCAN} ${FIND}"
fi
done
# Scan custom profile
2019-07-16 13:20:30 +02:00
if [ -n "${CUSTOM_PROFILE}" ]; then
2016-09-08 21:04:17 +02:00
FIND=$(${GREPBINARY} "^config-data=sysctl;" ${CUSTOM_PROFILE} | ${SEDBINARY} 's/ /-space-/g')
2016-08-18 14:35:20 +02:00
for LINE in ${FIND}; do
2016-08-25 15:31:33 +02:00
SYSCTLKEY=$(echo ${LINE} | ${AWKBINARY} -F\; '{ print $2 }')
2016-08-18 14:35:20 +02:00
HAS_KEY=$(echo ${DATA_TO_SCAN} | ${GREPBINARY} ";${SYSCTLKEY};")
if [ $? -gt 0 ]; then DATA_TO_SCAN="${DATA_TO_SCAN} ${LINE}"; fi
2016-04-13 16:13:04 +02:00
done
2016-08-18 14:35:20 +02:00
fi
# Last, use data from default profile
2019-07-16 13:20:30 +02:00
if [ -n "${DEFAULT_PROFILE}" ]; then
2016-09-08 21:04:17 +02:00
FIND=$(${GREPBINARY} "^config-data=sysctl;" ${DEFAULT_PROFILE} | ${SEDBINARY} 's/ /-space-/g')
2016-08-18 14:35:20 +02:00
for LINE in ${FIND}; do
2016-08-25 15:31:33 +02:00
SYSCTLKEY=$(echo ${LINE} | ${AWKBINARY} -F\; '{ print $2 }')
2016-08-18 14:35:20 +02:00
HAS_KEY=$(echo ${DATA_TO_SCAN} | ${GREPBINARY} ";${SYSCTLKEY};")
if [ $? -gt 0 ]; then DATA_TO_SCAN="${DATA_TO_SCAN} ${LINE}"; fi
done
fi
# Sort the results
2016-09-08 21:04:17 +02:00
DATA_TO_SCAN=$(echo ${DATA_TO_SCAN} | ${TRBINARY} ' ' '\n' | sort)
2016-08-18 14:35:20 +02:00
2018-01-11 10:38:11 +01:00
for line in ${DATA_TO_SCAN}; do
tFINDkey=$(echo ${line} | ${AWKBINARY} -F\; '{ print $2 }')
2018-01-11 10:19:16 +01:00
if ! SkipAtomicTest "${TEST_NO}:${tFINDkey}"; then
2018-01-11 10:38:11 +01:00
tFINDexpvalue=$(echo ${line} | ${AWKBINARY} -F\; '{ print $3 }' | ${TRBINARY} '|' ' ')
tFINDhp=$(echo ${line} | ${AWKBINARY} -F\; '{ print $4 }' | ${GREPBINARY} "[0-9]")
tFINDdesc=$(echo ${line} | ${AWKBINARY} -F\; '{ print $5 }' | ${SEDBINARY} 's/-space-/ /g')
2018-01-11 10:19:16 +01:00
tFINDcurvalue=$(${SYSCTL_READKEY} ${tFINDkey} 2> /dev/null)
2019-07-16 13:20:30 +02:00
if [ -n "${tFINDcurvalue}" ]; then
2018-01-11 10:19:16 +01:00
positive_match=0
for value in ${tFINDexpvalue}; do
if [ "${value}" = "${tFINDcurvalue}" ]; then
positive_match=1
fi
done
if [ ${positive_match} -eq 1 ]; then
LogText "Result: sysctl key ${tFINDkey} contains equal expected and current value (${tFINDexpvalue})"
Display --indent 4 --text "- ${tFINDkey} (exp: ${tFINDexpvalue})" --result "${STATUS_OK}" --color GREEN
AddHP ${tFINDhp} ${tFINDhp}
else
LogText "Result: sysctl key ${tFINDkey} has a different value than expected in scan profile. Expected=${tFINDexpvalue}, Real=${tFINDcurvalue}"
2020-12-16 01:07:27 +01:00
Display --indent 4 --text "- ${tFINDkey} (exp: ${tFINDexpvalue})" --result "${STATUS_DIFFERENT}" --color RED
2018-01-11 10:19:16 +01:00
AddHP 0 ${tFINDhp}
FOUND=1
N=$((N + 1))
ReportDetails --test "${TEST_NO}" --service "sysctl" --field "${tFINDkey}" --value "${tFINDcurvalue}" --preferredvalue "${tFINDexpvalue}" --description "${tFINDdesc}"
fi
2016-08-18 14:35:20 +02:00
else
2018-01-11 10:19:16 +01:00
LogText "Result: key ${tFINDkey} does not exist on this machine"
2016-08-18 14:35:20 +02:00
fi
else
2018-01-11 10:19:16 +01:00
LogText "Skipped test for ${tFINDkey} via profile"
2016-08-18 14:35:20 +02:00
fi
2014-08-26 17:33:55 +02:00
done
# Add suggestion if one or more sysctls have a different value than scan profile
2016-04-13 16:13:04 +02:00
if [ ${FOUND} -eq 1 ]; then
LogText "Result: found ${N} keys that can use tuning, according scan profile"
2019-12-18 12:17:46 +01:00
ReportSuggestion "${TEST_NO}" "One or more sysctl values differ from the scan profile and could be tweaked" "" "Change sysctl value or disable test (skip-test=${TEST_NO}:<sysctl-key>)"
2014-08-26 17:33:55 +02:00
fi
fi
#
#################################################################################
#
2016-04-28 12:31:57 +02:00
WaitForKeyPress
2014-08-26 17:33:55 +02:00
#
#================================================================================
2016-03-13 16:03:46 +01:00
# Lynis - Security Auditing and System Hardening for Linux and UNIX - https://cisofy.com