aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2024-10-07 10:58:03 +0200
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2024-10-07 09:00:43 +0000
commit513f57d9e2316fd1119b497b3a658998b238f035 (patch)
tree566409411d3171c82ac810752c970e7f2c0e2ffd
parentff24944fbdd120aa7089dfe2a609471f330dfdf3 (diff)
downloadnextcloud-server-backport/48584/stable29.tar.gz
nextcloud-server-backport/48584/stable29.zip
fix(config): Mark more app configs sensitivebackport/48584/stable29
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--lib/private/AppConfig.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/private/AppConfig.php b/lib/private/AppConfig.php
index 338792e23d1..59c35b0869d 100644
--- a/lib/private/AppConfig.php
+++ b/lib/private/AppConfig.php
@@ -1519,6 +1519,12 @@ class AppConfig implements IAppConfig {
'notify_push' => [
'/^cookie$/',
],
+ 'onlyoffice' => [
+ '/^jwt_secret$/',
+ ],
+ 'passwords' => [
+ '/^SSEv1ServerKey$/',
+ ],
'serverinfo' => [
'/^token$/',
],
@@ -1550,6 +1556,9 @@ class AppConfig implements IAppConfig {
'user_ldap' => [
'/^(s..)?ldap_agent_password$/',
],
+ 'twofactor_gateway' => [
+ '/^.*token$/',
+ ],
'user_saml' => [
'/^idp-x509cert$/',
],