Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-03-10 17:28:01 +0300
committerJoas Schilling <coding@schilljs.com>2022-03-10 17:52:01 +0300
commit50ccf7e2cff8dfe6345d32e5c3b69a544eef52ea (patch)
treee60edf9c4573e5439f4a8abd5299dc7f2e76688e /core/Command
parenta6882deebc0b4ab3bc181f97e5adb35f1bb4fcd0 (diff)
Validate the password before generating an apptokenbugfix/noid/fix-occ-user-add-apppassword
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/Command')
-rw-r--r--core/Command/User/AddAppPassword.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/Command/User/AddAppPassword.php b/core/Command/User/AddAppPassword.php
index 34c8dc67ccc..4f636c406fb 100644
--- a/core/Command/User/AddAppPassword.php
+++ b/core/Command/User/AddAppPassword.php
@@ -109,8 +109,10 @@ class AddAppPassword extends Command {
return 1;
}
- $output->writeln('<info>The password is not validated so what you provide is what gets recorded in the token</info>');
-
+ if (!$this->userManager->checkPassword($user->getUID(), $password)) {
+ $output->writeln('<error>The provided password is invalid</error>');
+ return 1;
+ }
$token = $this->random->generate(72, ISecureRandom::CHAR_UPPER.ISecureRandom::CHAR_LOWER.ISecureRandom::CHAR_DIGITS);
$generatedToken = $this->tokenProvider->generateToken(