From 4ddf79f4d005a048e825ce24d0028c995bbd39e3 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 1 Sep 2017 14:14:52 +0100 Subject: [PATCH] Added password strip function --- lgsm/functions/info_messages.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/lgsm/functions/info_messages.sh b/lgsm/functions/info_messages.sh index 1bc8f39df..497f22503 100644 --- a/lgsm/functions/info_messages.sh +++ b/lgsm/functions/info_messages.sh @@ -121,6 +121,7 @@ fn_info_message_gameserver(){ echo -e "" echo -e "${lightgreen}${gamename} Server Details${default}" + fn_info_message_password_strip fn_messages_separator { # Server name @@ -700,6 +701,7 @@ fn_info_message_seriousengine35(){ } fn_info_message_sdtd(){ + fn_info_message_password_strip echo -e "netstat -atunp | grep 7DaysToDie" echo -e "" { @@ -739,6 +741,7 @@ fn_info_message_source(){ } fn_info_message_spark(){ + fn_info_message_password_strip echo -e "netstat -atunp | grep server_linux3" echo -e "" { @@ -823,6 +826,7 @@ fn_info_message_towerunite(){ } fn_info_message_unreal(){ + fn_info_message_password_strip echo -e "netstat -atunp | grep ucc-bin" echo -e "" { @@ -979,4 +983,16 @@ fn_messages_separator(){ else echo -e "=================================" fi +} + +# 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="********" + fi } \ No newline at end of file