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>2019-08-29 11:39:43 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2019-08-29 11:39:43 +0300
commita87c2b10f9ce15d51344c8531e143bbc52a106e7 (patch)
tree1359d4fe3511df1780750c54bd8649f6ef8047d4 /include/tests_crypto
parent4932ab835150827e6274c114097152cf7bd90714 (diff)
Added CRYP-8002
Diffstat (limited to 'include/tests_crypto')
-rw-r--r--include/tests_crypto23
1 files changed, 23 insertions, 0 deletions
diff --git a/include/tests_crypto b/include/tests_crypto
index c79de525..cf6e0e48 100644
--- a/include/tests_crypto
+++ b/include/tests_crypto
@@ -149,6 +149,7 @@
fi
done
unset BLOCK_DEV
+
# This will enable us to do a test for forensics or when crypsetup/lsblk are not available
elif [ -f ${CRYPTTABFILE} ]; then
LogText "Result: crypttab (${CRYPTTABFILE}) exists"
@@ -172,6 +173,28 @@
fi
#
#################################################################################
+#
+ # Test : CRYP-8002
+ # Description : Gather available kernel entropy
+ Register --test-no CRYP-8002 --os Linux --weight L --network NO --root-only NO --category security --description "Gather available kernel entropy"
+ if [ ${SKIPTEST} -eq 0 ]; then
+ if [ -f ${ROOTDIR}proc/sys/kernel/random/entropy_avail ]; then
+ DATA=$(${AWKBINARY} '$1 ~ /^[0-9]+$/ {print $1}' ${ROOTDIR}proc/sys/kernel/random/entropy_avail)
+ if [ -n "${DATA}" ]; then
+ LogText "Result: found kernel entropy value of ${DATA}"
+ Report "kernel_entropy=${DATA}"
+ if [ ${DATA} -gt 200 ]; then
+ Display --indent 2 --text "- Kernel entropy is sufficient" --result "${STATUS_YES}" --color GREEN
+ else
+ Display --indent 2 --text "- Kernel entropy is sufficient" --result "${STATUS_NO}" --color YELLOW
+ # TODO - enable suggestion when information on website is available
+ fi
+ fi
+ fi
+ fi
+#
+#################################################################################
+#
WaitForKeyPress