Skip to content

Commit

Permalink
Merge pull request #48586 from nextcloud/backport/48584/stable30
Browse files Browse the repository at this point in the history
[stable30] fix(config): Mark more app configs sensitive
  • Loading branch information
nickvergessen authored Oct 7, 2024
2 parents eaabc28 + 3956088 commit aff5d46
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/private/AppConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -1490,6 +1490,12 @@ private function getSensitiveKeys(string $app): array {
'notify_push' => [
'/^cookie$/',
],
'onlyoffice' => [
'/^jwt_secret$/',
],
'passwords' => [
'/^SSEv1ServerKey$/',
],
'serverinfo' => [
'/^token$/',
],
Expand Down Expand Up @@ -1521,6 +1527,9 @@ private function getSensitiveKeys(string $app): array {
'user_ldap' => [
'/^(s..)?ldap_agent_password$/',
],
'twofactor_gateway' => [
'/^.*token$/',
],
'user_saml' => [
'/^idp-x509cert$/',
],
Expand Down

0 comments on commit aff5d46

Please sign in to comment.