From c1f2d5ff4a8cae08095013b59c925c17347c8549 Mon Sep 17 00:00:00 2001 From: Evgeniy Alekseev Date: Thu, 6 Apr 2023 00:31:50 +0300 Subject: [PATCH] hide cookie key and salt from config output --- src/ahriman/core/formatters/configuration_printer.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ahriman/core/formatters/configuration_printer.py b/src/ahriman/core/formatters/configuration_printer.py index 903125ed..8116f429 100644 --- a/src/ahriman/core/formatters/configuration_printer.py +++ b/src/ahriman/core/formatters/configuration_printer.py @@ -36,7 +36,9 @@ class ConfigurationPrinter(StringPrinter): HIDE_KEYS = [ "api_key", # telegram key "client_secret", # oauth secret + "cookie_secret_key", # cookie secret key "password", # generic password (github, email, web server, etc) + "salt", # password default salt "secret_key", # aws secret key ]