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:
authorTopi Miettinen <toiwoton@gmail.com>2020-03-21 13:50:38 +0300
committerTopi Miettinen <toiwoton@gmail.com>2020-03-21 13:50:38 +0300
commit4a51ad031b371dd60ed79f125fa68b787d31a840 (patch)
tree6d6398dff8a012619f8a8d33dd4209f2be23d525 /include/binaries
parent6356b3adb180d05f71514ea91455d513586ae71e (diff)
Check password hashing methods
Manual page crypt(5) gives recommendations for choosing password hashing methods, so let's check if there are weakly encrypted passwords in the system. Signed-off-by: Topi Miettinen <toiwoton@gmail.com>
Diffstat (limited to 'include/binaries')
-rw-r--r--include/binaries1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/binaries b/include/binaries
index 89e2fddd..af5882a5 100644
--- a/include/binaries
+++ b/include/binaries
@@ -310,6 +310,7 @@
# Test if the basic system tools are defined. These will be used during the audit.
[ "${AWKBINARY:-}" ] || ExitFatal "awk binary not found"
+ [ "${CAT_BINARY:-}" ] || ExitFatal "cat binary not found"
[ "${CUTBINARY:-}" ] || ExitFatal "cut binary not found"
[ "${EGREPBINARY:-}" ] || ExitFatal "grep binary not found"
[ "${FINDBINARY:-}" ] || ExitFatal "find binary not found"