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>2021-04-01 14:44:17 +0300
committerGitHub <noreply@github.com>2021-04-01 14:44:17 +0300
commita8f7b0cb85f8a21914de9244a695b29f27e9202b (patch)
tree3873fe2ea8d3e9f4a5e76204959a3d4dc1a6ab8a
parentaab6af4017e58eb7390a31a3852eddc63eff95f6 (diff)
parent2d1b217c6c0044baa386d2f5870b37f4f69a1523 (diff)
Merge pull request #1108 from schurzi/rounds
[AUTH-9229] resolve inconsistency with AUTH-9230
-rw-r--r--include/tests_authentication8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/tests_authentication b/include/tests_authentication
index 3366bb9a..2712aa34 100644
--- a/include/tests_authentication
+++ b/include/tests_authentication
@@ -294,12 +294,12 @@
# disabled | shadowed | no password | locked account (can be literal *LOCK* or something like LOCKED)
;;
*:\$5\$*| *:\$6\$*)
- # sha256crypt | sha512crypt: check number of rounds, should be >5000
+ # sha256crypt | sha512crypt: check number of rounds, should be >=5000
ROUNDS=$(echo "${METHOD}" | sed -n 's/.*rounds=\([0-9]*\)\$.*/\1/gp')
if [ -z "${ROUNDS}" ]; then
- echo 'sha256crypt/sha512crypt(default<=5000rounds)'
- elif [ "${ROUNDS}" -le 5000 ]; then
- echo 'sha256crypt/sha512crypt(<=5000rounds)'
+ echo 'sha256crypt/sha512crypt(default=5000rounds)'
+ elif [ "${ROUNDS}" -lt 5000 ]; then
+ echo 'sha256crypt/sha512crypt(<5000rounds)'
fi
;;
*:\$y\$* | *:\$gy\$* | *:\$2b\$* | *:\$7\$*)