Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Boelen <michael.boelen@cisofy.com>2016-08-18 15:35:20 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2016-08-18 15:35:20 +0300
commitd95ab3d253417b8030ee4d9620bd7ed06c4f28e1 (patch)
treefa82476b8220ee4d0d09dd0b30db12d5e29aeed0 /include/tests_kernel_hardening
parent4368b59a1da2db9ccb06bd03d635e174a0587572 (diff)
Support sysctl checks with multiple profiles
Diffstat (limited to 'include/tests_kernel_hardening')
-rw-r--r--include/tests_kernel_hardening77
1 files changed, 54 insertions, 23 deletions
diff --git a/include/tests_kernel_hardening b/include/tests_kernel_hardening
index 39303326..dde871d2 100644
--- a/include/tests_kernel_hardening
+++ b/include/tests_kernel_hardening
@@ -33,33 +33,64 @@
Register --test-no KRNL-6000 --preqs-met ${PREQS_MET} --weight L --network NO --category security --description "Check sysctl key pairs in scan profile"
if [ ${SKIPTEST} -eq 0 ]; then
FOUND=0
+ DATA_TO_SCAN=""
N=0
Display --indent 2 --text "- Comparing sysctl key pairs with scan profile"
+
+ # First scan optional profiles only (ignore default and custom)
for PROFILE in ${PROFILES}; do
- FIND=`grep "^sysctl:" ${PROFILE} | sed 's/ /-space-/g'`
- for I in ${FIND}; do
- tFINDkey=`echo ${I} | awk -F: '{ print $2 }'`
- tFINDexpvalue=`echo ${I} | awk -F: '{ print $3 }'`
- tFINDhp=`echo ${I} | awk -F: '{ print $4 }' | grep "[0-9]"`
- tFINDdesc=`echo ${I} | awk -F: '{ print $5 }' | sed 's/-space-/ /g'`
- tFINDcurvalue=`${SYSCTL_READKEY} ${tFINDkey} 2> /dev/null`
- if [ ! "${tFINDcurvalue}" = "" ]; then
- if [ "${tFINDexpvalue}" = "${tFINDcurvalue}" ]; 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}"
- Display --indent 4 --text "- ${tFINDkey} (exp: ${tFINDexpvalue})" --result DIFFERENT --color RED
- AddHP 0 ${tFINDhp}
- FOUND=1
- N=$((N + 1))
- ReportDetails --test "${TEST_NO}" --service "sysctl" --field "${tFINDkey}" --value "${tFINDcurvalue}" --preferredvalue "${tFINDexpvalue}" --description "${tFINDdesc}"
- fi
- else
- LogText "Result: key ${tFINDkey} does not exist on this machine"
- fi
+ FILE=$(echo ${PROFILE} | awk -F/ '{print $NF}')
+ if [ ! "${FILE}" = "default.prf" -a ! "${FILE}" = "custom.prf" ]; then
+ FIND=$(grep "^config-data=sysctl;" ${PROFILE} | sed 's/ /-space-/g')
+ DATA_TO_SCAN="${DATA_TO_SCAN} ${FIND}"
+ fi
+ done
+
+ # Scan custom profile
+ if [ ! -z "${CUSTOM_PROFILE}" ]; then
+ FIND=$(grep "^config-data=sysctl;" ${CUSTOM_PROFILE} | sed 's/ /-space-/g')
+ for LINE in ${FIND}; do
+ SYSCTLKEY=$(echo ${LINE} | awk -F\; '{ print $2 }')
+ HAS_KEY=$(echo ${DATA_TO_SCAN} | ${GREPBINARY} ";${SYSCTLKEY};")
+ if [ $? -gt 0 ]; then DATA_TO_SCAN="${DATA_TO_SCAN} ${LINE}"; fi
done
+ fi
+
+ # Last, use data from default profile
+ if [ ! -z "${DEFAULT_PROFILE}" ]; then
+ FIND=$(grep "^config-data=sysctl;" ${DEFAULT_PROFILE} | sed 's/ /-space-/g')
+ for LINE in ${FIND}; do
+ SYSCTLKEY=$(echo ${LINE} | awk -F\; '{ print $2 }')
+ 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
+ DATA_TO_SCAN=$(echo ${DATA_TO_SCAN} | tr ' ' '\n' | sort)
+
+ for I in ${DATA_TO_SCAN}; do
+ tFINDkey=$(echo ${I} | awk -F\; '{ print $2 }')
+ tFINDexpvalue=$(echo ${I} | awk -F\; '{ print $3 }')
+ tFINDhp=$(echo ${I} | awk -F\; '{ print $4 }' | grep "[0-9]")
+ tFINDdesc=$(echo ${I} | awk -F\; '{ print $5 }' | sed 's/-space-/ /g')
+ tFINDcurvalue=$(${SYSCTL_READKEY} ${tFINDkey} 2> /dev/null)
+ if [ ! "${tFINDcurvalue}" = "" ]; then
+ if [ "${tFINDexpvalue}" = "${tFINDcurvalue}" ]; 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}"
+ Display --indent 4 --text "- ${tFINDkey} (exp: ${tFINDexpvalue})" --result DIFFERENT --color RED
+ AddHP 0 ${tFINDhp}
+ FOUND=1
+ N=$((N + 1))
+ ReportDetails --test "${TEST_NO}" --service "sysctl" --field "${tFINDkey}" --value "${tFINDcurvalue}" --preferredvalue "${tFINDexpvalue}" --description "${tFINDdesc}"
+ fi
+ else
+ LogText "Result: key ${tFINDkey} does not exist on this machine"
+ fi
done
# Add suggestion if one or more sysctls have a different value than scan profile