Skip to content

Commit

Permalink
Merge pull request #48585 from nextcloud/backport/48584/stable29
Browse files Browse the repository at this point in the history
[stable29] fix(config): Mark more app configs sensitive
  • Loading branch information
nickvergessen authored Oct 7, 2024
2 parents ff24944 + 513f57d commit cec6f95
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 @@ -1519,6 +1519,12 @@ private function getSensitiveKeys(string $app): array {
'notify_push' => [
'/^cookie$/',
],
'onlyoffice' => [
'/^jwt_secret$/',
],
'passwords' => [
'/^SSEv1ServerKey$/',
],
'serverinfo' => [
'/^token$/',
],
Expand Down Expand Up @@ -1550,6 +1556,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 cec6f95

Please sign in to comment.