Merge pull request #52433 from nextcloud/backport/52424/stable31

[stable31] fix(config): Censor more app configs in system report
pull/52435/head
Joas Schilling 10 months ago committed by GitHub
commit cb13e2fd80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 12
      lib/private/AppConfig.php

@ -1455,6 +1455,9 @@ class AppConfig implements IAppConfig {
'globalsiteselector' => [
'/^gss\.jwt\.key$/',
],
'gpgmailer' => [
'/^GpgServerKey$/',
],
'integration_discourse' => [
'/^private_key$/',
'/^public_key$/',
@ -1509,6 +1512,9 @@ class AppConfig implements IAppConfig {
'/^client_secret$/',
'/^oauth_instance_url$/',
],
'maps' => [
'/^mapboxAPIKEY$/',
],
'notify_push' => [
'/^cookie$/',
],
@ -1546,12 +1552,12 @@ class AppConfig implements IAppConfig {
'/^slogan$/',
'/^url$/',
],
'user_ldap' => [
'/^(s..)?ldap_agent_password$/',
],
'twofactor_gateway' => [
'/^.*token$/',
],
'user_ldap' => [
'/^(s..)?ldap_agent_password$/',
],
'user_saml' => [
'/^idp-x509cert$/',
],

Loading…
Cancel
Save