diff options
author | Joas Schilling <coding@schilljs.com> | 2016-07-11 10:48:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-11 10:48:47 +0200 |
commit | 3e941f6ba1a1971a790985f8d1a4ba012e0cbe80 (patch) | |
tree | 12f5a5daa54f6fe87a51728c9bf55390c91700bc | |
parent | 1ace70d2c228384bc069d4cd066e5ef9c4a6419d (diff) | |
parent | 390a9962970b9283663d8a84d5da4929aa5921e8 (diff) | |
download | nextcloud-server-3e941f6ba1a1971a790985f8d1a4ba012e0cbe80.tar.gz nextcloud-server-3e941f6ba1a1971a790985f8d1a4ba012e0cbe80.zip |
Merge pull request #345 from nextcloud/sanitize-logs-and-stacktraces
Sanitize more config options and stack traces
-rw-r--r-- | lib/private/Log.php | 1 | ||||
-rw-r--r-- | lib/private/SystemConfig.php | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/lib/private/Log.php b/lib/private/Log.php index 49223521916..b759021ad1f 100644 --- a/lib/private/Log.php +++ b/lib/private/Log.php @@ -64,6 +64,7 @@ class Log implements ILogger { // Session/User 'login', 'checkPassword', + 'loginWithPassword', 'updatePrivateKeyPassword', 'validateUserPass', diff --git a/lib/private/SystemConfig.php b/lib/private/SystemConfig.php index d773e601256..4d9882c9538 100644 --- a/lib/private/SystemConfig.php +++ b/lib/private/SystemConfig.php @@ -55,6 +55,12 @@ class SystemConfig { 'objectstore' => [ 'arguments' => [ 'password' => true, + 'options' => [ + 'credentials' => [ + 'key' => true, + 'secret' => true, + ] + ] ], ], ]; |