You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2021/09/16 18:02:27 UTC

[brooklyn-docs] branch master updated: specify echo must not print newline when doing md5 example

This is an automated email from the ASF dual-hosted git repository.

heneveld pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-docs.git


The following commit(s) were added to refs/heads/master by this push:
     new 275569d  specify echo must not print newline when doing md5 example
     new b64b091  Merge branch 'master' of https://gitbox.apache.org/repos/asf/brooklyn-docs
275569d is described below

commit 275569d26d35483f9e827d065eed762b5f7bdc85
Author: Alex Heneveld <al...@cloudsoftcorp.com>
AuthorDate: Thu Sep 16 19:01:55 2021 +0100

    specify echo must not print newline when doing md5 example
---
 guide/ops/security-guidelines.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guide/ops/security-guidelines.md b/guide/ops/security-guidelines.md
index 3add619..d37e793 100644
--- a/guide/ops/security-guidelines.md
+++ b/guide/ops/security-guidelines.md
@@ -231,7 +231,7 @@ For example, in the logs and in the UI, sensitive information might be displayed
     password: <suppressed> (MD5 hash prefix: 0A721B3B)
 
 If you want to confirm the value of the password (in this case `TopSecret`), you can
-compute the MD5 hash yourself, e.g. with `echo TopSecret | md5`, looking at the first
+compute the MD5 hash yourself, e.g. with `echo -n TopSecret | md5`, looking at the first
 8 hex digits, and of course taking care to run the command in a secure location!
 
 Note that in some places (eg if plaintext values are embedded in blueprints, contrary to