Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(config): Censor more app configs in system report
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen authored and backportbot[bot] committed Apr 25, 2025
commit 306e03b08044897b8de2fe7d5441d49cc0a98376
12 changes: 9 additions & 3 deletions lib/private/AppConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -1469,6 +1469,9 @@ private function getSensitiveKeys(string $app): array {
'globalsiteselector' => [
'/^gss\.jwt\.key$/',
],
'gpgmailer' => [
'/^GpgServerKey$/',
],
'integration_discourse' => [
'/^private_key$/',
'/^public_key$/',
Expand Down Expand Up @@ -1523,6 +1526,9 @@ private function getSensitiveKeys(string $app): array {
'/^client_secret$/',
'/^oauth_instance_url$/',
],
'maps' => [
'/^mapboxAPIKEY$/',
],
'notify_push' => [
'/^cookie$/',
],
Expand Down Expand Up @@ -1560,12 +1566,12 @@ private function getSensitiveKeys(string $app): array {
'/^slogan$/',
'/^url$/',
],
'user_ldap' => [
'/^(s..)?ldap_agent_password$/',
],
'twofactor_gateway' => [
'/^.*token$/',
],
'user_ldap' => [
'/^(s..)?ldap_agent_password$/',
],
'user_saml' => [
'/^idp-x509cert$/',
],
Expand Down
Loading