diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-10-07 13:14:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-07 13:14:23 +0200 |
commit | bbb6cb2eb01937ca5346b30b44e1969eb1eb0807 (patch) | |
tree | 5e95cd8ffbf9f8226b6a78522d9d433fcf4364f6 /lib/private | |
parent | c3dfb9a464bbe11fec8cdcf3743592dc367d9b9f (diff) | |
parent | c900ef9d8e4f5a5ed0ebc5292e9da177ae50d14e (diff) | |
download | nextcloud-server-bbb6cb2eb01937ca5346b30b44e1969eb1eb0807.tar.gz nextcloud-server-bbb6cb2eb01937ca5346b30b44e1969eb1eb0807.zip |
Merge pull request #48584 from nextcloud/bugfix/noid/increase-exclude-list
fix(config): Mark more app configs sensitive
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/AppConfig.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/private/AppConfig.php b/lib/private/AppConfig.php index bd574d4335c..4bbd3f4ce80 100644 --- a/lib/private/AppConfig.php +++ b/lib/private/AppConfig.php @@ -1490,6 +1490,12 @@ class AppConfig implements IAppConfig { 'notify_push' => [ '/^cookie$/', ], + 'onlyoffice' => [ + '/^jwt_secret$/', + ], + 'passwords' => [ + '/^SSEv1ServerKey$/', + ], 'serverinfo' => [ '/^token$/', ], @@ -1521,6 +1527,9 @@ class AppConfig implements IAppConfig { 'user_ldap' => [ '/^(s..)?ldap_agent_password$/', ], + 'twofactor_gateway' => [ + '/^.*token$/', + ], 'user_saml' => [ '/^idp-x509cert$/', ], |