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:
authormboelen <michael@cisofy.com>2015-03-03 12:59:46 +0300
committermboelen <michael@cisofy.com>2015-03-03 12:59:46 +0300
commit98c9f2e3bcf41d07c2740af24ba683a6abec1102 (patch)
tree6337dd52ee1b0af2f16d1faa4d886374af81028a
parent446885d4fdcaa40b4c7b562ee08316ae03b8643a (diff)
Blacklist a HostID with only zeros
-rwxr-xr-xlynis4
1 files changed, 2 insertions, 2 deletions
diff --git a/lynis b/lynis
index 2a2d064c..b2925d38 100755
--- a/lynis
+++ b/lynis
@@ -701,8 +701,8 @@
# Get host ID
logtextbreak
GetHostID
- # Check if result is not empty (no blank, or hash of blank value, or minus)
- if [ ! "${HOSTID}" = "-" -a ! "${HOSTID}" = "" -a ! "${HOSTID}" = "adc83b19e793491b1c6ea0fd8b46cd9f32e592fc" ]; then
+ # Check if result is not empty (no blank, or hash of blank value, or minus, or zeros)
+ if [ ! "${HOSTID}" = "-" -a ! "${HOSTID}" = "" -a ! "${HOSTID}" = "adc83b19e793491b1c6ea0fd8b46cd9f32e592fc" -a ! "${HOSTID}" = "6ef1338f520d075957424741d7ed35ab5966ae97" ]; then
logtext "Info: found valid HostID ${HOSTID}"
report "hostid=${HOSTID}"
else