From 69e9c58f180c32ad3aca34c34165438a1f876a8c Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 1 Sep 2017 14:44:16 +0100 Subject: [PATCH] password strip only displays relevent passwords --- lgsm/functions/info_messages.sh | 29 +++++++++++++++++++++++------ 1 file changed, 23 insertions(+), 6 deletions(-) diff --git a/lgsm/functions/info_messages.sh b/lgsm/functions/info_messages.sh index 497f22503..0025a5286 100644 --- a/lgsm/functions/info_messages.sh +++ b/lgsm/functions/info_messages.sh @@ -988,11 +988,28 @@ fn_messages_separator(){ # Removes the passwords form all but details fn_info_message_password_strip(){ if [ "${function_selfname}" != "command_details.sh" ]; then - serverpassword="********" - rconpassword="********" - adminpassword="********" - statspassword="********" - webadminpass="********" - telnetpass="********" + if [ -n "${serverpassword}" ]; then + serverpassword="********" + fi + + if [ -n "${rconpassword}" ]; then + rconpassword="********" + fi + + if [ -n "${adminpassword}" ]; then + adminpassword="********" + fi + + if [ -n "${statspassword}" ]; then + statspassword="********" + fi + + if [ -n "${webadminpass}" ]; then + webadminpass="********" + fi + + if [ -n "${telnetpass}" ]; then + telnetpass="********" + fi fi } \ No newline at end of file