Skip to content

Commit ff95692

Browse files
Merge pull request #35200 from nextcloud/backport/35096/stable24
[stable24] Mark more config values as sensitive
2 parents 1ff39cf + 996bb09 commit ff95692

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

lib/private/AppConfig.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ class AppConfig implements IAppConfig {
4646
/** @var array[] */
4747
protected $sensitiveValues = [
4848
'circles' => [
49+
'/^key_pairs$/',
4950
'/^local_gskey$/',
5051
],
5152
'external' => [
@@ -132,6 +133,9 @@ class AppConfig implements IAppConfig {
132133
'user_ldap' => [
133134
'/^(s..)?ldap_agent_password$/',
134135
],
136+
'user_saml' => [
137+
'/^idp-x509cert$/',
138+
],
135139
];
136140

137141
/** @var Connection */

lib/private/SystemConfig.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,10 @@ class SystemConfig {
7272
'host' => true,
7373
'password' => true,
7474
],
75+
'redis.cluster' => [
76+
'seeds' => true,
77+
'password' => true,
78+
],
7579
'objectstore' => [
7680
'arguments' => [
7781
// Legacy Swift (https://github.com/nextcloud/server/pull/17696#discussion_r341302207)

0 commit comments

Comments
 (0)