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-10-17 18:16:36 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2016-10-17 18:16:36 +0300
commit1641f4c88f150d9bac7bbe665036c697cd44fd57 (patch)
tree143e3b56aec315d66215b3c932ababf753f88fc3
parent20ec79d4e231bf0576b2a7962aae07c724fd216b (diff)
Use machine ID if we have no suitable other string yet
-rw-r--r--include/functions17
1 files changed, 14 insertions, 3 deletions
diff --git a/include/functions b/include/functions
index 3096ae76..29d2a6a9 100644
--- a/include/functions
+++ b/include/functions
@@ -1006,7 +1006,7 @@
for I in ${SSH_KEY_FILES}; do
if [ ${FOUND} -eq 0 ]; then
if [ -f /etc/ssh/${I} ]; then
- LogText "Result: found file ${I} in /etc/ssh"
+ LogText "Result: found file ${I} in /etc/ssh, using that to create host identifier"
DATA_SSH=$(cat /etc/ssh/${I})
FOUND=1
fi
@@ -1016,7 +1016,18 @@
LogText "Result: no /etc/ssh directory found, skipping"
fi
- if [ ! "${DATA_SSH}" = "" ]; then
+ STRING_TO_HASH=""
+ if [ ${FOUND} -eq 1 -a ! -z "${DATA_SSH}" ]; then
+ LogText "Using SSH public key to create the second host identifier"
+ STRING_TO_HASH="${DATA_SSH}"
+ else
+ if [ ! -z "${MACHINEID}" ]; then
+ LogText "Using the machine ID to create the second host identifier"
+ STRING_TO_HASH="${MACHINEID}"
+ fi
+ fi
+ # Check if we have a string to turn into a host identifier
+ if [ ! -z "${STRING_TO_HASH}" ]; then
# Create hashes
if [ ! "${SHA256SUMBINARY}" = "" ]; then
HASH_SSH=$(echo ${DATA_SSH} | ${SHA256SUMBINARY} | awk '{ print $1 }')
@@ -1029,7 +1040,7 @@
LogText "Hash (ssh): ${HASH_SSH}"
HOSTID2="${HASH_SSH}"
Report "hostid2=${HOSTID2}"
- fi
+ fi
fi
# Show an exception if no HostID could be created, to ensure each system (and scan) has one