diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2014-11-06 11:11:46 +0100 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2014-11-06 14:35:48 +0100 |
commit | 9255da9856f97cac230ec452a61aef7f1c5a2ad2 (patch) | |
tree | 56f2ed5e0c011f73e80fdb0919ccaad6b9beb762 | |
parent | 4c46a2f162bf85ddd1641f39146d8c1965abb1b0 (diff) | |
download | nextcloud-server-9255da9856f97cac230ec452a61aef7f1c5a2ad2.tar.gz nextcloud-server-9255da9856f97cac230ec452a61aef7f1c5a2ad2.zip |
check if the provided password is really the current log-in password
-rw-r--r-- | apps/files_encryption/ajax/updatePrivateKeyPassword.php | 44 |
1 files changed, 29 insertions, 15 deletions
diff --git a/apps/files_encryption/ajax/updatePrivateKeyPassword.php b/apps/files_encryption/ajax/updatePrivateKeyPassword.php index a14c9fe5076..f8d291d963f 100644 --- a/apps/files_encryption/ajax/updatePrivateKeyPassword.php +++ b/apps/files_encryption/ajax/updatePrivateKeyPassword.php @@ -18,6 +18,7 @@ use OCA\Encryption; $l = OC_L10N::get('core'); $return = false; +$errorMessage = $l->t('Could not update the private key password.'); $oldPassword = $_POST['oldPassword']; $newPassword = $_POST['newPassword']; @@ -26,30 +27,43 @@ $view = new \OC\Files\View('/'); $session = new \OCA\Encryption\Session($view); $user = \OCP\User::getUser(); -$proxyStatus = \OC_FileProxy::$enabled; -\OC_FileProxy::$enabled = false; +// check new password +$passwordCorrect = \OCP\User::checkPassword($user, $newPassword); -$keyPath = '/' . $user . '/files_encryption/' . $user . '.private.key'; +if ($passwordCorrect !== false) { -$encryptedKey = $view->file_get_contents($keyPath); -$decryptedKey = \OCA\Encryption\Crypt::decryptPrivateKey($encryptedKey, $oldPassword); + $proxyStatus = \OC_FileProxy::$enabled; + \OC_FileProxy::$enabled = false; -if ($decryptedKey) { - $cipher = \OCA\Encryption\Helper::getCipher(); - $encryptedKey = \OCA\Encryption\Crypt::symmetricEncryptFileContent($decryptedKey, $newPassword, $cipher); - if ($encryptedKey) { - \OCA\Encryption\Keymanager::setPrivateKey($encryptedKey, $user); - $session->setPrivateKey($decryptedKey); - $return = true; + $keyPath = '/' . $user . '/files_encryption/' . $user . '.private.key'; + + $encryptedKey = $view->file_get_contents($keyPath); + $decryptedKey = \OCA\Encryption\Crypt::decryptPrivateKey($encryptedKey, $oldPassword); + + if ($decryptedKey) { + $cipher = \OCA\Encryption\Helper::getCipher(); + $encryptedKey = \OCA\Encryption\Crypt::symmetricEncryptFileContent($decryptedKey, $newPassword, $cipher); + if ($encryptedKey) { + \OCA\Encryption\Keymanager::setPrivateKey($encryptedKey, $user); + $session->setPrivateKey($decryptedKey); + $return = true; + } + } else { + $result = false; + $errorMessage = $l->t('The old password was not correct, please try again.'); } -} -\OC_FileProxy::$enabled = $proxyStatus; + \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))); } |