diff options
author | Lukas Reschke <lukas@owncloud.com> | 2014-11-06 13:42:00 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2014-11-06 13:42:00 +0100 |
commit | bb15028a00da22496fe3e0b5e1fe86a0fa9705b4 (patch) | |
tree | fa86e0d9aab55d8a341ba4b081853481f24fbbfe | |
parent | f2d17ea77141c3bf8b38a368f420e3b81a783498 (diff) | |
parent | 8104a4e24e8aece95e47a2b6d1fdea30420b6dd9 (diff) | |
download | nextcloud-server-bb15028a00da22496fe3e0b5e1fe86a0fa9705b4.tar.gz nextcloud-server-bb15028a00da22496fe3e0b5e1fe86a0fa9705b4.zip |
Merge pull request #11993 from owncloud/enc_repeat_password
[encryption] check if the provided password is really the current log-in password
-rw-r--r-- | apps/files_encryption/ajax/updatePrivateKeyPassword.php | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/apps/files_encryption/ajax/updatePrivateKeyPassword.php b/apps/files_encryption/ajax/updatePrivateKeyPassword.php index f88e9c64dfd..0f182e93831 100644 --- a/apps/files_encryption/ajax/updatePrivateKeyPassword.php +++ b/apps/files_encryption/ajax/updatePrivateKeyPassword.php @@ -18,6 +18,7 @@ use OCA\Encryption; $l = \OC::$server->getL10N('core'); $return = false; +$errorMessage = $l->t('Could not update the private key password.'); $oldPassword = $_POST['oldPassword']; $newPassword = $_POST['newPassword']; @@ -26,6 +27,11 @@ $view = new \OC\Files\View('/'); $session = new \OCA\Encryption\Session($view); $user = \OCP\User::getUser(); +// check new password +$passwordCorrect = \OCP\User::checkPassword($user, $newPassword); + +if ($passwordCorrect !== false) { + $proxyStatus = \OC_FileProxy::$enabled; \OC_FileProxy::$enabled = false; @@ -42,14 +48,22 @@ if ($decryptedKey) { $session->setPrivateKey($decryptedKey); $return = true; } +} else { + $result = false; + $errorMessage = $l->t('The old password was not correct, please try again.'); } \OC_FileProxy::$enabled = $proxyStatus; +} else { + $result = false; + $errorMessage = $l->t('The current log-in password was not correct, please try again.'); +} + // success or failure if ($return) { $session->setInitialized(\OCA\Encryption\Session::INIT_SUCCESSFUL); \OCP\JSON::success(array('data' => array('message' => $l->t('Private key password successfully updated.')))); } else { - \OCP\JSON::error(array('data' => array('message' => $l->t('Could not update the private key password. Maybe the old password was not correct.')))); + \OCP\JSON::error(array('data' => array('message' => $errorMessage))); } |