Merge pull request #48584 from nextcloud/bugfix/noid/increase-exclude-list

fix(config): Mark more app configs sensitive
bug/19494/insert-ignore-conflict-for-filecache-extended
Ferdinand Thiessen 2024-10-07 13:14:23 +07:00 committed by GitHub
commit bbb6cb2eb0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 0 deletions

@ -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$/',
],