From c7356086853f7b1216c5aab9eea748e0d2e2d77c Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Sun, 5 Sep 2021 14:23:49 -0700 Subject: [PATCH] obfuscate secret keys on display --- weed/shell/command_remote_configure.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/weed/shell/command_remote_configure.go b/weed/shell/command_remote_configure.go index 4f0469d5f..3fa905237 100644 --- a/weed/shell/command_remote_configure.go +++ b/weed/shell/command_remote_configure.go @@ -160,7 +160,14 @@ func (c *commandRemoteConfigure) listExistingRemoteStorages(commandEnv *CommandE return fmt.Errorf("unmarshal %s/%s: %v", filer.DirectoryEtcRemote, entry.Name, err) } + // change secret key to stars conf.S3SecretKey = strings.Repeat("*", len(conf.S3SecretKey)) + conf.AliyunSecretKey = strings.Repeat("*", len(conf.AliyunSecretKey)) + conf.BaiduAccessKey = strings.Repeat("*", len(conf.BaiduAccessKey)) + conf.FilebaseSecretKey = strings.Repeat("*", len(conf.FilebaseSecretKey)) + conf.StorjSecretKey = strings.Repeat("*", len(conf.StorjSecretKey)) + conf.TencentSecretKey = strings.Repeat("*", len(conf.TencentSecretKey)) + conf.WasabiSecretKey = strings.Repeat("*", len(conf.WasabiSecretKey)) m := jsonpb.Marshaler{ EmitDefaults: false,