mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
[Reset Password] Refactor to use new auth result (#380)
* [Reset Password] Refactor to use new auth result * Update jslib * Update class to fix build
This commit is contained in:
parent
0803bc2f7b
commit
325e9ded0d
2
jslib
2
jslib
@ -1 +1 @@
|
|||||||
Subproject commit 764dc40b36e0000807e59b8d6feea5ac4577270d
|
Subproject commit e3ab324d59ee04870007e5078901a22e4dd81440
|
@ -13,8 +13,6 @@ import { PolicyService } from 'jslib-common/abstractions/policy.service';
|
|||||||
import { SyncService } from 'jslib-common/abstractions/sync.service';
|
import { SyncService } from 'jslib-common/abstractions/sync.service';
|
||||||
import { UserService } from 'jslib-common/abstractions/user.service';
|
import { UserService } from 'jslib-common/abstractions/user.service';
|
||||||
|
|
||||||
import { UpdateTempPasswordRequest } from 'jslib-common/models/request/updateTempPasswordRequest';
|
|
||||||
|
|
||||||
import { MessageResponse } from 'jslib-node/cli/models/response/messageResponse';
|
import { MessageResponse } from 'jslib-node/cli/models/response/messageResponse';
|
||||||
|
|
||||||
import { Utils } from 'jslib-common/misc/utils';
|
import { Utils } from 'jslib-common/misc/utils';
|
||||||
@ -23,16 +21,17 @@ import { LoginCommand as BaseLoginCommand } from 'jslib-node/cli/commands/login.
|
|||||||
|
|
||||||
export class LoginCommand extends BaseLoginCommand {
|
export class LoginCommand extends BaseLoginCommand {
|
||||||
private options: program.OptionValues;
|
private options: program.OptionValues;
|
||||||
private email: string;
|
|
||||||
|
|
||||||
constructor(authService: AuthService, apiService: ApiService,
|
constructor(authService: AuthService, apiService: ApiService,
|
||||||
cryptoFunctionService: CryptoFunctionService, syncService: SyncService,
|
cryptoFunctionService: CryptoFunctionService, syncService: SyncService,
|
||||||
i18nService: I18nService, environmentService: EnvironmentService,
|
i18nService: I18nService, environmentService: EnvironmentService,
|
||||||
passwordGenerationService: PasswordGenerationService, platformUtilsService: PlatformUtilsService,
|
passwordGenerationService: PasswordGenerationService, platformUtilsService: PlatformUtilsService,
|
||||||
private userService: UserService, private cryptoService: CryptoService, private policyService: PolicyService,
|
userService: UserService, cryptoService: CryptoService, policyService: PolicyService,
|
||||||
private logoutCallback: () => Promise<void>) {
|
private logoutCallback: () => Promise<void>) {
|
||||||
super(authService, apiService, i18nService, environmentService, passwordGenerationService,
|
super(authService, apiService, i18nService, environmentService, passwordGenerationService,
|
||||||
cryptoFunctionService, platformUtilsService, 'cli');
|
cryptoFunctionService, platformUtilsService, userService, cryptoService, policyService,
|
||||||
|
'cli', syncService);
|
||||||
|
this.logout = this.logoutCallback;
|
||||||
this.validatedParams = async () => {
|
this.validatedParams = async () => {
|
||||||
const key = await cryptoFunctionService.randomBytes(64);
|
const key = await cryptoFunctionService.randomBytes(64);
|
||||||
process.env.BW_SESSION = Utils.fromBufferToB64(key);
|
process.env.BW_SESSION = Utils.fromBufferToB64(key);
|
||||||
@ -40,22 +39,6 @@ export class LoginCommand extends BaseLoginCommand {
|
|||||||
this.success = async () => {
|
this.success = async () => {
|
||||||
await syncService.fullSync(true);
|
await syncService.fullSync(true);
|
||||||
|
|
||||||
this.email = await this.userService.getEmail();
|
|
||||||
if (await this.userService.getForcePasswordReset()) {
|
|
||||||
return await this.updateTempPassword();
|
|
||||||
}
|
|
||||||
|
|
||||||
return this.deliverResponse();
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
run(email: string, password: string, options: program.OptionValues) {
|
|
||||||
this.options = options;
|
|
||||||
this.email = email;
|
|
||||||
return super.run(email, password, options);
|
|
||||||
}
|
|
||||||
|
|
||||||
private deliverResponse(): MessageResponse {
|
|
||||||
if ((this.options.sso != null || this.options.apikey != null) && this.canInteract) {
|
if ((this.options.sso != null || this.options.apikey != null) && this.canInteract) {
|
||||||
const res = new MessageResponse('You are logged in!', '\n' +
|
const res = new MessageResponse('You are logged in!', '\n' +
|
||||||
'To unlock your vault, use the `unlock` command. ex:\n' +
|
'To unlock your vault, use the `unlock` command. ex:\n' +
|
||||||
@ -71,107 +54,12 @@ export class LoginCommand extends BaseLoginCommand {
|
|||||||
res.raw = process.env.BW_SESSION;
|
res.raw = process.env.BW_SESSION;
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
private async updateTempPassword(error?: string): Promise<MessageResponse> {
|
run(email: string, password: string, options: program.OptionValues) {
|
||||||
// If no interaction available, alert user to use web vault
|
this.options = options;
|
||||||
if (!this.canInteract) {
|
this.email = email;
|
||||||
await this.logoutCallback();
|
return super.run(email, password, options);
|
||||||
this.authService.logOut(() => { /* Do nothing */ });
|
|
||||||
return new MessageResponse('An organization administrator recently changed your master password. In order to access the vault, you must update your master password now via the web vault. You have been logged out.', null);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get New Master Password
|
|
||||||
const baseMessage = 'An organization administrator recently changed your master password.In order to access the vault, you must update your master password now.\n' + 'Master password: ';
|
|
||||||
const firstMessage = error != null ? error + baseMessage : baseMessage;
|
|
||||||
const mp: inquirer.Answers = await inquirer.createPromptModule({ output: process.stderr })({
|
|
||||||
type: 'password',
|
|
||||||
name: 'password',
|
|
||||||
message: firstMessage,
|
|
||||||
});
|
|
||||||
const masterPassword = mp.password;
|
|
||||||
|
|
||||||
// Master Password Validation
|
|
||||||
if (masterPassword == null || masterPassword === '') {
|
|
||||||
return this.updateTempPassword('Master password is required.\n');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (masterPassword.length < 8) {
|
|
||||||
return this.updateTempPassword('Master password must be at least 8 characters long.\n');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get New Master Password Re-type
|
|
||||||
const retype: inquirer.Answers = await inquirer.createPromptModule({ output: process.stderr })({
|
|
||||||
type: 'password',
|
|
||||||
name: 'password',
|
|
||||||
message: 'Re-type New Master password:',
|
|
||||||
});
|
|
||||||
const masterPasswordRetype = retype.password;
|
|
||||||
|
|
||||||
// Re-type Validation
|
|
||||||
if (masterPassword !== masterPasswordRetype) {
|
|
||||||
return this.updateTempPassword('Master password confirmation does not match.\n');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get Hint (optional)
|
|
||||||
const hint: inquirer.Answers = await inquirer.createPromptModule({ output: process.stderr })({
|
|
||||||
type: 'input',
|
|
||||||
name: 'input',
|
|
||||||
message: 'Master Password Hint:',
|
|
||||||
});
|
|
||||||
const masterPasswordHint = hint.input;
|
|
||||||
|
|
||||||
// Retrieve details for key generation
|
|
||||||
const enforcedPolicyOptions = await this.policyService.getMasterPasswordPolicyOptions();
|
|
||||||
const kdf = await this.userService.getKdf();
|
|
||||||
const kdfIterations = await this.userService.getKdfIterations();
|
|
||||||
|
|
||||||
// Strength & Policy Validation
|
|
||||||
const strengthResult = this.passwordGenerationService.passwordStrength(masterPassword,
|
|
||||||
this.getPasswordStrengthUserInput());
|
|
||||||
|
|
||||||
if (enforcedPolicyOptions != null &&
|
|
||||||
!this.policyService.evaluateMasterPassword(
|
|
||||||
strengthResult.score,
|
|
||||||
masterPassword,
|
|
||||||
enforcedPolicyOptions)) {
|
|
||||||
return this.updateTempPassword('Your new master password does not meet the policy requirements.\n');
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
// Create new key and hash new password
|
|
||||||
const newKey = await this.cryptoService.makeKey(masterPassword, this.email.trim().toLowerCase(),
|
|
||||||
kdf, kdfIterations);
|
|
||||||
const newPasswordHash = await this.cryptoService.hashPassword(masterPassword, newKey);
|
|
||||||
|
|
||||||
// Grab user's current enc key
|
|
||||||
const userEncKey = await this.cryptoService.getEncKey();
|
|
||||||
|
|
||||||
// Create new encKey for the User
|
|
||||||
const newEncKey = await this.cryptoService.remakeEncKey(newKey, userEncKey);
|
|
||||||
|
|
||||||
// Create request
|
|
||||||
const request = new UpdateTempPasswordRequest();
|
|
||||||
request.key = newEncKey[1].encryptedString;
|
|
||||||
request.newMasterPasswordHash = newPasswordHash;
|
|
||||||
request.masterPasswordHint = masterPasswordHint;
|
|
||||||
|
|
||||||
// Update user's password
|
|
||||||
await this.apiService.putUpdateTempPassword(request);
|
|
||||||
return this.deliverResponse();
|
|
||||||
} catch (e) {
|
|
||||||
await this.logoutCallback();
|
|
||||||
this.authService.logOut(() => { /* Do nothing */ });
|
|
||||||
return e;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private getPasswordStrengthUserInput() {
|
|
||||||
let userInput: string[] = [];
|
|
||||||
const atPosition = this.email.indexOf('@');
|
|
||||||
if (atPosition > -1) {
|
|
||||||
userInput = userInput.concat(this.email.substr(0, atPosition).trim().toLowerCase().split(/[^A-Za-z0-9]/));
|
|
||||||
}
|
|
||||||
return userInput;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user