mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
* PM-5263 - Token Service state migration - (1) Got key and state definitions setup (2) Ported over core state service getTimeoutBasedStorageOptions method logic into local determineStorageLocation method (3) Updated majority of methods to use state provider state * PM-5263 - StateSvc - add TODO to remove timeoutBasedStorageOptions + other state methods after migration code complete. * PM-5263 - TokenSvc - ClearToken method - (1) Update signature to remove user id as it wasn't used and it simplifies the new state provider implementation (2) Convert away from state svc to state provider state. * PM-5263 - TokenService - update deps - WIP on circular dep issues. * PM-5263 - To resolve circular dep issues between VaultTimeoutSettingsSvc and TokenService: (1) For writes, require callers to pass in vault timeout data (2) For reads, we can just check both locations. This approach has 1 less state call than the previous implementation and is safe as long as the clear logic properly works and is executed anytime a user changes their vault timeout action (lock or log out) & vault timeout (numeric value) * PM-5263 - VaultTimeoutSettingsSvc - Set token calls now updated to include vault timeout info. * PM-5263 - Update API Service - add state service and look up vault timeout details and pass to token service when setting token info. * PM-5263 - TokenService - update service dependencies. * PM-5263 - TokenService - Add new getAccessTokenByUserId method for state service use case. * PM-5263 - StateSvc - remove migrated methods and try to replace all usages of getAccessToken. WIP * PM-5263 - TokenSvc Migration - start on migrator * PM-5263 - (1) TokenSvc - Build new clearAccessTokenByUserId which is required by state service (2) TokenSvc - Update getToken to take an optional userId to handle another state service case (3) Add some documentation to TokenSvc abstraction. * PM-5263 - StateService - finish updating all calls within the state service which accessed token service state directly with calls to the new token service methods instead. * PM-5263 - TokenSvc Abstraction - Add more docs * PM-5263 - TokenSvc abstraction - more doc tweaks * PM-5263 - Web state service - add new token service dependency. * PM-5263 - User API Key Login Strategy - Update to pull vault timeout action and vault timeout from state service in order to pass to new token service endpoints for setting API key client id and secret. * PM-5263 - (1) Remove TokenSvc owned state from account (2) StateSvc - remove account scaffold logic for clearing removed account data. The same functionality will exist in the state provider framework via lifecycle hooks cleaning up this data and users getting initialized with null data by default. * PM-5263 - Add token service dependency to state service (WIP - desktop deps not working) * PM-5263 - Update services module on desktop and browser to add token svc dependency * PM-5263 - API service factory - add state service factory dependency that I missed initially to get browser building. * PM-5263 - TokenSvc - getToken/setToken/decodeToken --> getAccessToken/setAccessToken/decodeAccessToken * PM-5263 - TokenSvc State Provider Migrator - WIP - update expected acct type to match actual account * PM-5263 - TokenService - clearToken renamed to clearTokens * PM-5263 - CLI - NodeApiService - add state service dep to get CLI building. * PM-5263 - StateDefinitions - use unique state definition names * PM-5263 - StateSvc - remove getTimeoutBasedStorageOptions as no longer used. * PM-5263 - TokenSvc - Add TODO for figuring out how to store tokens in secure storage. * PM-5263 - StateSvc - remove get/set 2FA token - references migrated later. * PM-5263 - TODO: figure out if using same key definition names is an issue * PM-5263 - TokenServiceStateProviderMigrator written * PM-5263 - TokenServiceStateProviderMigrator - (1) Don't update legacy account if we only added a new state in state provider for 2FA token (2) Use for loop for easier debugging * PM-5263 - TokenServiceStateProviderMigrator test - WIP - migration testing mostly complete and passing. Rollback logic TODO. * PM-5263 - TokenServiceStateProviderMigrator - Add rollback logic to restore 2FA token from users to global. * PM-5263 - TokenServiceStateProviderMigrator - Refactor rollback to only set account once as not necessary to set it every time. * PM-5263 - TokenServiceStateProviderMigrator tests - test all rollback scenarios * PM-5263 - Remove TODO as don't need unique key def names as long as state def keys are unique. * PM-5263 - TokenSvc - update clearAccessTokenByUserId to use proper state provider helper method to set state. * PM-5263 - Revert accidentally committing settings.json changes. * PM-5263 - TokenSvc - update all 2FA token methods to require email so we can user specifically scope 2FA tokens while still storing them in global storage. * PM-5263 - Update all token service 2FA set / get / clear methods to pass in email. * PM-5263 - JslibServices module - add missed login service to login strategy svc deps. * PM-5263 - VaultTimeoutSettingsService - setVaultTimeoutOptions - rename token to accesToken for clarity. * PM-5263 - (1) TokenSvc - remove getAccessTokenByUserId and force consumers to use getAccessToken w/ optional user id to keep interface small (2) TokenSvc - attempt to implement secure storage on platforms that support it for access & refresh token storage (3) StateSvc - replace usage of getAccessTokenByUserId with getAccessToken * PM-5263 - TokenSvc - add platform utils and secure storage svc deps * PM-5263 - TODO: figure out what to do with broken migration * PM-5263 - TODO: update tests in light of latest 2FA token changes. * PM-5263 - TokenSvc - clean up TODO * PM-5263 - We should have tests for the token service. * PM-5263 - TokenSvc - setAccessToken - If platform supports secure storage and we are saving an access token, remove the access token from memory and disk to fully migrate to secure storage. * PM-5263 - TokenSvc - getAccessToken - Update logic to look at memory and disk first always and secure storage last to support the secure storage migration * PM-5263 - TokenSvc - setAccesToken - if user id null on a secure storage supporting platform, throw error. * PM-5263 - TokenService - (1) Refresh token now stored in secure storage (2) Refresh token set now private as we require a user id to store it in secure storage and we can use the setTokens method to enforce always setting the access token and refresh token together in order to extract a user id from the refresh token. (3) setTokens clientIdClientSecret param now optional * PM-5263 - TokenServiceStateProviderMigrator - update migration to take global but user scoped 2FA token storage changes into account. * PM-5263 - Remove old migration as it references state we are removing. Bump min version. Co-authored-by: Matt Gibson <git@mgibson.dev> * PM-5263 - TokenService - 2FA token methods now backed by global state record which maps email to individual tokens. * PM-5263 - WIP on Token Svc migrator and test updates based on new 2FA token storage changes. * PM-5263 - TokenSvc - (1) Add jira tickets to clean up state migration (2) Add state to track secure storage migration to improve # of reads to get data * PM-5263 - StateDef - consolidate name of token domain state defs per feedback from Justin + update migration tests * PM-5263 - TokenSvc - fix error message and add TODO * PM-5263 - Update token service migration + tests to pass after all 2FA token changes. * PM-5263 - Fix all login strategy tests which were failing due to token state provider changes + the addition of the loginService as a dependency in the base login strategy. * PM-5263 - Register TokenService state provider migration with migrator * PM-5263 - TokenSvc state migration - set tokens after initializing account * PM-5263 - TokenService changes - WIP - convert from ActiveUserStateProvider to just SingleUserStateProvider to avoid future circ dependency issues. Co-authored-by: Jake Fink <jlf0dev@users.noreply.github.com> * PM-5263 - TokenSvc - create getSecureStorageOptions for centralizing all logic for getting data out of SecureStorage. * PM-5263 - TokenSvc - (1) Refactor determineStorageLocation to also determine secure storage - created a TokenStorageLocation string enum to remove magic strings (2) Refactor setAccessToken to use switch (3) Refactor clearAccessTokenByUserId to clear all locations and not early return on secure storage b/c we only use secure storage if disk is the location but I don't want to require vault timeout data for this method. * PM-5263 - TokenSvc - getDataFromSecureStorage - Refactor to be more generic for easier re-use * PM-5263 - TokenSvc - Convert refresh token methods to use single user state and require user ids * PM-5263 - VaultTimeoutSettingsSvc - get user id and pass to access and refresh token methods. * PM-5263 - TokenSvc - refactor save secure storage logic into private helper. * PM-5263 - Base Login Strategy - per discussion with Justin, move save of tokens to before account initialization as we can always derive the user id from the access token. This will ensure that the account is initialized with the proper authN status. * PM-5263 - TokenSvc - latest refactor - update all methods to accept optional userId now as we can read active user id from global state provider without using activeUserStateProvider (thus, avoiding a circular dep and having to have every method accept in a mandatory user id). * PM-5263 - VaultTimeoutSettingsService - remove user id from token calls * PM-5263 - TokenSvc - update all places we instantiate token service to properly pass in new deps. * PM-5263 - TokenSvc migration is now 27th instead of 23rd. * PM-5263 - Browser - MainContextMenuHandler - Update service options to include PlatformUtilsServiceInitOptions as the TokenService requires that and the TokenService is now injected on the StateService * PM-5263 - TokenSvc migration test - update rollback tests to start with correct current version * PM-5263 - Create token service test file - WIP * PM-5263 - TokenSvc - tests WIP - instantiates working. * PM-5263 - TokenSvc - set2FAToken - use null coalesce to ensure record is instantiated for new users before setting data on it. * PM-5263 - TokenService tests - WIP - 2FA token tests. * PM-5263 - Worked with Justin to resolve desktop circular dependency issue by adding SUPPORTS_SECURE_STORAGE injection token instead of injecting PlatformUtilsService directly into TokenService. Co-authored-by: Justin Baur <19896123+justindbaur@users.noreply.github.com> * PM-5263 - TokenSvc tests - WIP - (1) Update TokenSvc instantiation to use new supportsSecureStorage (2) Test TwoFactorToken methods * PM-5263 - Fix SUPPORTS_SECURE_STORAGE injection token to properly call supportsSecureStorage message * PM-5263 - Token state testing * PM-5263 - TokenState fix name of describe * PM-5263 - TokenService - export TokenStorageLocation for use in tests. * PM-5263 - TokenSvc Tests WIP * PM-5263 - TokenSvc tests - access token logic mostly completed. * PM-5263 - TokenSvc Tests - more WIP - finish testing access token methods. * PM-5263 - TokenSvc WIP - another clear access token test. * PM-5263 - TokenSvc tests - WIP - SetTokens tested. * PM-5263 - Tweak test name * PM-5263 - TokenSvc tests - remove unnecessary describe around 2FA token methods. * PM-5263 - TokenSvc.clearAccessTokenByUserId renamed to just clearAccessToken * PM-5263 - TokenSvc - refactor clearTokens logic and implement individual clear logic which doesn't require vault timeout setting information. * PM-5263 - TokenSvc - Replace all places we have vaultTimeout: number with vaultTimeout: number | null to be accurate. * PM-5263 - TokenSvc.clearTokens - add check for user id; throw if not found * PM-5263 - TokenService - test clearTokens * PM-5263 - TokenSvc Tests - setRefreshToken tested * PM-5263 - TokenSvc tests - getRefreshToken tested + added a new getAccessToken test * PM-5263 - TokenSvc - ClearRefreshToken scenarios tested. * PM-5263 - TokenSvc.clearRefreshToken tests - fix copy pasta * PM-5263 - TokenSvc tests - (1) Fix mistakes in refresh token testing (2) Test setClientId for all scenarios * PM-5263 - TokenSvc tests - (1) Add some getClientId tests (2) clarify lack of awaits * PM-5263 - TokenSvc Tests - WIP - getClientId && clearClientId * PM-5263 - TokenService - getClientSecret - fix error message * PM-5263 - TokenService tests - test all client secret methods * PM-5263 - Update TokenSvc migration to 30th migration * PM-5263 - TokenService - update all tests to initialize data to undefined now that fake state provider supports faking data based on specific key definitions. * PM-5263 - (1) TokenSvc.decodeAccessToken - update static method's error handling (2) TokenSvc tests - test all decodeAccessToken scenarios * PM-5263 - TokenSvc - (1) Add DecodedAccessToken type (2) Refactor getTokenExpirationDate logic to use new type and make proper type checks for numbers for exp claim values. * PM-5263 - TokenSvc tests - test getTokenExpirationDate method. * PM-5263 - TokenSvc - (1) Update DecodedAccessToken docs (2) Tweak naming in tokenSecondsRemaining * PM-5263 - TokenSvc abstraction - add jsdoc for tokenSecondsRemaining * PM-5263 - TokenSvc tests - test tokenSecondsRemaining * PM-5263 - TokenSvc - DecodedAccessToken type - update sstamp info * PM-5263 - TokenService - fix flaky tokenSecondsRemaining tests by locking time * PM-5263 - TokenSvc Tests - Test tokenNeedsRefresh * PM-5263 - (1) TokenSvc - Refactor getUserId to add extra safety (2) TokenSvc tests - test getUserId * PM-5263 - (1) TokenSvc - refactor getUserIdFromAccessToken to handle decoding errors (2) TokenSvc tests - test getUserIdFromAccessToken * PM-5263 - (1) TokenSvc - Refactor getEmail to handle decoding errors + check for specific, expected type (2) TokenSvc tests - test getEmail * PM-5263 - TokenSvc tests - clean up comment * PM-5263 - (1) TokenSvc - getEmailVerified - refactor (2) TokenSvc tests - add getEmailVerified tests * PM-5263 - (1) TokenSvc - refactor getName (2) TokenSvc tests - test getName * PM-5263 - (1) TokenSvc - refactor getIssuer (2) TokenSvc tests - test getIssuer * PM-5263 - TokenSvc - remove unnecessary "as type" statements now that we have a decoded access token type * PM-5263 - (1) TokenSvc - refactor getIsExternal (2) TokenSvc Tests - test getIsExternal * PM-5263 - TokenSvc abstraction - tune up rest of docs. * PM-5263 - TokenSvc - clean up promise<any> and replace with promise<void> * PM-5263 - TokenSvc abstraction - more docs. * PM-5263 - Clean up TODO as I've tested every method in token svc. * PM-5263 - (1) Extract JWT decode logic into auth owned utility function out of the token service (2) Update TokenService decode logic to use new utility function (3) Update LastPassDirectImportService + vault.ts to use new utility function and remove token service dependency. (4) Update tests + migrate tests to new utility test file. * PM-5263 - Rename decodeJwtTokenToJson to decode-jwt-token-to-json to meet lint rules excluding capitals * PM-5263 - TokenSvc + tests - fix all get methods to return undefined like they did before instead of throwing an error if a user id isn't provided. * PM-5263 - Services.module - add missing token service dep * PM-5263 - Update token svc migrations to be 32nd migration * PM-5263 - Popup - Services.module - Remove token service as it no longer requires a background service due to the migration to state provider. The service definition in jslib-services module is enough. * PM-5263 - BaseLoginStrategy - Extract email out of getTwoFactorToken method call for easier debugging. * PM-5263 - Login Comp - Set email into memory on login service so that base login strategy can access user email for looking up 2FA token stored in global state. * PM-5263 - (1) LoginComp - remove loginSvc.setEmail call as no longer necessary + introduced issues w/ popup and background in browser extension (2) AuthReq & Password login strategies now just pass in email to buildTwoFactor method. * PM-5263 - SsoLoginSvc + abstraction - Add key definition and get/set methods for saving user email in session storage so it persists across the SSO redirect. * PM-5263 - Base Login Strategy - BuildTwoFactor - only try to get 2FA token if we have an email to look up their token * PM-5263 - Remove LoginService dependency from LoginStrategyService * PM-5263 - (1) Save off user email when they click enterprise SSO on all clients in login comp (2) Retrieve it and pass it into login strategy in SSO comp * PM-5263 - (1) TokenSvc - update 2FA token methods to be more safe in case user removes record from local storage (2) Add test cases + missing clearTwoFactorToken tests * PM-5263 - Browser SSO login - save user email for browser SSO process * PM-5263 - Finish removing login service from login strategy tests. * PM-5263 - More removals of the login service from the login strategy tests. * PM-5263 - Main.ts - platformUtilsSvc no longer used in TokenSvc so remove it from desktop main.ts * PM-5263 - Fix failing login strategy service tests * PM-5263 - Bump token svc migration values to migration 35 after merging in main * PM-5263 - Bump token svc migration version * PM-5263 - TokenService.clearTwoFactorToken - use delete instead of setting values to null per discussion with Justin Co-authored-by: Justin Baur <19896123+justindbaur@users.noreply.github.com> * PM-5263 - TokenSvc + decode JWT token tests - anonymize my information Co-authored-by: Justin Baur <19896123+justindbaur@users.noreply.github.com> * PM-5263 - TokenSvc tests - update clear token tests based on actual deletion * PM-5263 - Add docs per PR feedback * PM-5263 - (1) Move ownership of clearing two factor token on rejection from server to base login strategy (2) Each login strategy that supports remember 2FA logic now persists user entered email in its data (3) Base login strategy processTwoFactorResponse now clears 2FA token (4) Updated base login strategy tests to affirm the clearing of the 2FA token * Update libs/auth/src/common/login-strategies/login.strategy.ts Co-authored-by: Jake Fink <jfink@bitwarden.com> * Update libs/auth/src/common/login-strategies/password-login.strategy.ts Co-authored-by: Jake Fink <jfink@bitwarden.com> * PM-5263 - Login Strategy - per PR feedback, add jsdoc comments to each method I've touched for this PR. * PM-5263 - (1) TokenSvc - adjust setTokens, setAccessToken, setRefreshToken, and clearRefreshToken based on PR feedback to remove optional user ids where possible and improve public interface (2) TokenSvc Abstraction - update docs and abstractions based on removed user ids and changed logic (3) TokenSvc tests - update tests to add new test cases, remove no longer relevant ones, and update test names. * PM-5263 - Bump migrations again --------- Co-authored-by: Matt Gibson <git@mgibson.dev> Co-authored-by: Jake Fink <jlf0dev@users.noreply.github.com> Co-authored-by: Justin Baur <19896123+justindbaur@users.noreply.github.com> Co-authored-by: Jake Fink <jfink@bitwarden.com>
778 lines
28 KiB
TypeScript
778 lines
28 KiB
TypeScript
import * as http from "http";
|
|
|
|
import { OptionValues } from "commander";
|
|
import * as inquirer from "inquirer";
|
|
import Separator from "inquirer/lib/objects/separator";
|
|
import { firstValueFrom } from "rxjs";
|
|
|
|
import {
|
|
LoginStrategyServiceAbstraction,
|
|
PasswordLoginCredentials,
|
|
SsoLoginCredentials,
|
|
UserApiLoginCredentials,
|
|
} from "@bitwarden/auth/common";
|
|
import { ApiService } from "@bitwarden/common/abstractions/api.service";
|
|
import { OrganizationService } from "@bitwarden/common/admin-console/abstractions/organization/organization.service.abstraction";
|
|
import { PolicyApiServiceAbstraction } from "@bitwarden/common/admin-console/abstractions/policy/policy-api.service.abstraction";
|
|
import { PolicyService } from "@bitwarden/common/admin-console/abstractions/policy/policy.service.abstraction";
|
|
import { AuthService } from "@bitwarden/common/auth/abstractions/auth.service";
|
|
import { KeyConnectorService } from "@bitwarden/common/auth/abstractions/key-connector.service";
|
|
import { TwoFactorService } from "@bitwarden/common/auth/abstractions/two-factor.service";
|
|
import { TwoFactorProviderType } from "@bitwarden/common/auth/enums/two-factor-provider-type";
|
|
import { AuthResult } from "@bitwarden/common/auth/models/domain/auth-result";
|
|
import { ForceSetPasswordReason } from "@bitwarden/common/auth/models/domain/force-set-password-reason";
|
|
import { TokenTwoFactorRequest } from "@bitwarden/common/auth/models/request/identity-token/token-two-factor.request";
|
|
import { PasswordRequest } from "@bitwarden/common/auth/models/request/password.request";
|
|
import { TwoFactorEmailRequest } from "@bitwarden/common/auth/models/request/two-factor-email.request";
|
|
import { UpdateTempPasswordRequest } from "@bitwarden/common/auth/models/request/update-temp-password.request";
|
|
import { ErrorResponse } from "@bitwarden/common/models/response/error.response";
|
|
import { CryptoFunctionService } from "@bitwarden/common/platform/abstractions/crypto-function.service";
|
|
import { CryptoService } from "@bitwarden/common/platform/abstractions/crypto.service";
|
|
import { EnvironmentService } from "@bitwarden/common/platform/abstractions/environment.service";
|
|
import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service";
|
|
import { StateService } from "@bitwarden/common/platform/abstractions/state.service";
|
|
import { Utils } from "@bitwarden/common/platform/misc/utils";
|
|
import { EncString } from "@bitwarden/common/platform/models/domain/enc-string";
|
|
import { SymmetricCryptoKey } from "@bitwarden/common/platform/models/domain/symmetric-crypto-key";
|
|
import { PasswordGenerationServiceAbstraction } from "@bitwarden/common/tools/generator/password";
|
|
import { PasswordStrengthServiceAbstraction } from "@bitwarden/common/tools/password-strength";
|
|
import { SyncService } from "@bitwarden/common/vault/abstractions/sync/sync.service.abstraction";
|
|
import { NodeUtils } from "@bitwarden/node/node-utils";
|
|
|
|
import { Response } from "../../models/response";
|
|
import { MessageResponse } from "../../models/response/message.response";
|
|
|
|
export class LoginCommand {
|
|
protected canInteract: boolean;
|
|
protected clientSecret: string;
|
|
protected email: string;
|
|
|
|
private ssoRedirectUri: string = null;
|
|
private options: OptionValues;
|
|
|
|
constructor(
|
|
protected loginStrategyService: LoginStrategyServiceAbstraction,
|
|
protected authService: AuthService,
|
|
protected apiService: ApiService,
|
|
protected cryptoFunctionService: CryptoFunctionService,
|
|
protected environmentService: EnvironmentService,
|
|
protected passwordGenerationService: PasswordGenerationServiceAbstraction,
|
|
protected passwordStrengthService: PasswordStrengthServiceAbstraction,
|
|
protected platformUtilsService: PlatformUtilsService,
|
|
protected stateService: StateService,
|
|
protected cryptoService: CryptoService,
|
|
protected policyService: PolicyService,
|
|
protected twoFactorService: TwoFactorService,
|
|
protected syncService: SyncService,
|
|
protected keyConnectorService: KeyConnectorService,
|
|
protected policyApiService: PolicyApiServiceAbstraction,
|
|
protected orgService: OrganizationService,
|
|
protected logoutCallback: () => Promise<void>,
|
|
) {}
|
|
|
|
async run(email: string, password: string, options: OptionValues) {
|
|
this.options = options;
|
|
this.email = email;
|
|
|
|
this.canInteract = process.env.BW_NOINTERACTION !== "true";
|
|
|
|
let ssoCodeVerifier: string = null;
|
|
let ssoCode: string = null;
|
|
let orgIdentifier: string = null;
|
|
|
|
let clientId: string = null;
|
|
let clientSecret: string = null;
|
|
|
|
let selectedProvider: any = null;
|
|
|
|
if (options.apikey != null) {
|
|
const apiIdentifiers = await this.apiIdentifiers();
|
|
clientId = apiIdentifiers.clientId;
|
|
clientSecret = apiIdentifiers.clientSecret;
|
|
if (clientId == null || clientId.trim() === "") {
|
|
return Response.badRequest("client_id is required.");
|
|
}
|
|
if (clientSecret == null || clientSecret === "") {
|
|
return Response.badRequest("client_secret is required.");
|
|
}
|
|
} else if (options.sso != null && this.canInteract) {
|
|
const passwordOptions: any = {
|
|
type: "password",
|
|
length: 64,
|
|
uppercase: true,
|
|
lowercase: true,
|
|
numbers: true,
|
|
special: false,
|
|
};
|
|
const state = await this.passwordGenerationService.generatePassword(passwordOptions);
|
|
ssoCodeVerifier = await this.passwordGenerationService.generatePassword(passwordOptions);
|
|
const codeVerifierHash = await this.cryptoFunctionService.hash(ssoCodeVerifier, "sha256");
|
|
const codeChallenge = Utils.fromBufferToUrlB64(codeVerifierHash);
|
|
try {
|
|
const ssoParams = await this.openSsoPrompt(codeChallenge, state);
|
|
ssoCode = ssoParams.ssoCode;
|
|
orgIdentifier = ssoParams.orgIdentifier;
|
|
} catch {
|
|
return Response.badRequest("Something went wrong. Try again.");
|
|
}
|
|
} else {
|
|
if ((email == null || email === "") && this.canInteract) {
|
|
const answer: inquirer.Answers = await inquirer.createPromptModule({
|
|
output: process.stderr,
|
|
})({
|
|
type: "input",
|
|
name: "email",
|
|
message: "Email address:",
|
|
});
|
|
email = answer.email;
|
|
}
|
|
if (email == null || email.trim() === "") {
|
|
return Response.badRequest("Email address is required.");
|
|
}
|
|
if (email.indexOf("@") === -1) {
|
|
return Response.badRequest("Email address is invalid.");
|
|
}
|
|
this.email = email;
|
|
|
|
if (password == null || password === "") {
|
|
if (options.passwordfile) {
|
|
password = await NodeUtils.readFirstLine(options.passwordfile);
|
|
} else if (options.passwordenv && process.env[options.passwordenv]) {
|
|
password = process.env[options.passwordenv];
|
|
} else if (this.canInteract) {
|
|
const answer: inquirer.Answers = await inquirer.createPromptModule({
|
|
output: process.stderr,
|
|
})({
|
|
type: "password",
|
|
name: "password",
|
|
message: "Master password:",
|
|
});
|
|
password = answer.password;
|
|
}
|
|
}
|
|
|
|
if (password == null || password === "") {
|
|
return Response.badRequest("Master password is required.");
|
|
}
|
|
}
|
|
|
|
let twoFactorToken: string = options.code;
|
|
let twoFactorMethod: TwoFactorProviderType = null;
|
|
try {
|
|
if (options.method != null) {
|
|
twoFactorMethod = parseInt(options.method, null);
|
|
}
|
|
} catch (e) {
|
|
return Response.error("Invalid two-step login method.");
|
|
}
|
|
|
|
const twoFactor =
|
|
twoFactorToken == null
|
|
? null
|
|
: new TokenTwoFactorRequest(twoFactorMethod, twoFactorToken, false);
|
|
|
|
try {
|
|
await this.validatedParams();
|
|
|
|
let response: AuthResult = null;
|
|
if (clientId != null && clientSecret != null) {
|
|
if (!clientId.startsWith("user")) {
|
|
return Response.error("Invalid API Key; Organization API Key currently not supported");
|
|
}
|
|
try {
|
|
response = await this.loginStrategyService.logIn(
|
|
new UserApiLoginCredentials(clientId, clientSecret),
|
|
);
|
|
} catch (e) {
|
|
// handle API key login failures
|
|
// Handle invalid client error as server doesn't return a useful message
|
|
if (
|
|
e?.response?.error &&
|
|
typeof e.response.error === "string" &&
|
|
e.response.error === "invalid_client"
|
|
) {
|
|
return Response.badRequest("client_id or client_secret is incorrect. Try again.");
|
|
}
|
|
// Pass error up to be handled by the outer catch block below
|
|
throw e;
|
|
}
|
|
} else if (ssoCode != null && ssoCodeVerifier != null) {
|
|
response = await this.loginStrategyService.logIn(
|
|
new SsoLoginCredentials(
|
|
ssoCode,
|
|
ssoCodeVerifier,
|
|
this.ssoRedirectUri,
|
|
orgIdentifier,
|
|
undefined, // email to look up 2FA token not required as CLI can't remember 2FA token
|
|
twoFactor,
|
|
),
|
|
);
|
|
} else {
|
|
response = await this.loginStrategyService.logIn(
|
|
new PasswordLoginCredentials(email, password, null, twoFactor),
|
|
);
|
|
}
|
|
if (response.requiresEncryptionKeyMigration) {
|
|
return Response.error(
|
|
"Encryption key migration required. Please login through the web vault to update your encryption key.",
|
|
);
|
|
}
|
|
if (response.captchaSiteKey) {
|
|
const credentials = new PasswordLoginCredentials(email, password);
|
|
const handledResponse = await this.handleCaptchaRequired(twoFactor, credentials);
|
|
|
|
// Error Response
|
|
if (handledResponse instanceof Response) {
|
|
return handledResponse;
|
|
} else {
|
|
response = handledResponse;
|
|
}
|
|
}
|
|
if (response.requiresTwoFactor) {
|
|
const twoFactorProviders = this.twoFactorService.getSupportedProviders(null);
|
|
if (twoFactorProviders.length === 0) {
|
|
return Response.badRequest("No providers available for this client.");
|
|
}
|
|
|
|
if (twoFactorMethod != null) {
|
|
try {
|
|
selectedProvider = twoFactorProviders.filter((p) => p.type === twoFactorMethod)[0];
|
|
} catch (e) {
|
|
return Response.error("Invalid two-step login method.");
|
|
}
|
|
}
|
|
|
|
if (selectedProvider == null) {
|
|
if (twoFactorProviders.length === 1) {
|
|
selectedProvider = twoFactorProviders[0];
|
|
} else if (this.canInteract) {
|
|
const twoFactorOptions: (string | Separator)[] = twoFactorProviders.map((p) => p.name);
|
|
twoFactorOptions.push(new inquirer.Separator());
|
|
twoFactorOptions.push("Cancel");
|
|
const answer: inquirer.Answers = await inquirer.createPromptModule({
|
|
output: process.stderr,
|
|
})({
|
|
type: "list",
|
|
name: "method",
|
|
message: "Two-step login method:",
|
|
choices: twoFactorOptions,
|
|
});
|
|
const i = twoFactorOptions.indexOf(answer.method);
|
|
if (i === twoFactorOptions.length - 1) {
|
|
return Response.error("Login failed.");
|
|
}
|
|
selectedProvider = twoFactorProviders[i];
|
|
}
|
|
if (selectedProvider == null) {
|
|
return Response.error("Login failed. No provider selected.");
|
|
}
|
|
}
|
|
|
|
if (
|
|
twoFactorToken == null &&
|
|
response.twoFactorProviders.size > 1 &&
|
|
selectedProvider.type === TwoFactorProviderType.Email
|
|
) {
|
|
const emailReq = new TwoFactorEmailRequest();
|
|
emailReq.email = await this.loginStrategyService.getEmail();
|
|
emailReq.masterPasswordHash = await this.loginStrategyService.getMasterPasswordHash();
|
|
await this.apiService.postTwoFactorEmail(emailReq);
|
|
}
|
|
|
|
if (twoFactorToken == null) {
|
|
if (this.canInteract) {
|
|
const answer: inquirer.Answers = await inquirer.createPromptModule({
|
|
output: process.stderr,
|
|
})({
|
|
type: "input",
|
|
name: "token",
|
|
message: "Two-step login code:",
|
|
});
|
|
twoFactorToken = answer.token;
|
|
}
|
|
if (twoFactorToken == null || twoFactorToken === "") {
|
|
return Response.badRequest("Code is required.");
|
|
}
|
|
}
|
|
|
|
response = await this.loginStrategyService.logInTwoFactor(
|
|
new TokenTwoFactorRequest(selectedProvider.type, twoFactorToken),
|
|
null,
|
|
);
|
|
}
|
|
|
|
if (response.captchaSiteKey) {
|
|
const twoFactorRequest = new TokenTwoFactorRequest(selectedProvider.type, twoFactorToken);
|
|
const handledResponse = await this.handleCaptchaRequired(twoFactorRequest);
|
|
|
|
// Error Response
|
|
if (handledResponse instanceof Response) {
|
|
return handledResponse;
|
|
} else {
|
|
response = handledResponse;
|
|
}
|
|
}
|
|
|
|
if (response.requiresTwoFactor) {
|
|
return Response.error("Login failed.");
|
|
}
|
|
|
|
if (response.resetMasterPassword) {
|
|
return Response.error(
|
|
"In order to log in with SSO from the CLI, you must first log in" +
|
|
" through the web vault to set your master password.",
|
|
);
|
|
}
|
|
|
|
// Run full sync before handling success response or password reset flows (to get Master Password Policies)
|
|
await this.syncService.fullSync(true);
|
|
|
|
// Handle updating passwords if NOT using an API Key for authentication
|
|
if (
|
|
response.forcePasswordReset != ForceSetPasswordReason.None &&
|
|
clientId == null &&
|
|
clientSecret == null
|
|
) {
|
|
if (response.forcePasswordReset === ForceSetPasswordReason.AdminForcePasswordReset) {
|
|
return await this.updateTempPassword();
|
|
} else if (response.forcePasswordReset === ForceSetPasswordReason.WeakMasterPassword) {
|
|
return await this.updateWeakPassword(password);
|
|
}
|
|
}
|
|
|
|
return await this.handleSuccessResponse();
|
|
} catch (e) {
|
|
return Response.error(e);
|
|
}
|
|
}
|
|
|
|
private async validatedParams() {
|
|
const key = await this.cryptoFunctionService.randomBytes(64);
|
|
process.env.BW_SESSION = Utils.fromBufferToB64(key);
|
|
}
|
|
|
|
private async handleSuccessResponse(): Promise<Response> {
|
|
const usesKeyConnector = await this.keyConnectorService.getUsesKeyConnector();
|
|
|
|
if (
|
|
(this.options.sso != null || this.options.apikey != null) &&
|
|
this.canInteract &&
|
|
!usesKeyConnector
|
|
) {
|
|
const res = new MessageResponse(
|
|
"You are logged in!",
|
|
"\n" + "To unlock your vault, use the `unlock` command. ex:\n" + "$ bw unlock",
|
|
);
|
|
return Response.success(res);
|
|
}
|
|
|
|
const res = new MessageResponse(
|
|
"You are logged in!",
|
|
"\n" +
|
|
"To unlock your vault, set your session key to the `BW_SESSION` environment variable. ex:\n" +
|
|
'$ export BW_SESSION="' +
|
|
process.env.BW_SESSION +
|
|
'"\n' +
|
|
'> $env:BW_SESSION="' +
|
|
process.env.BW_SESSION +
|
|
'"\n\n' +
|
|
"You can also pass the session key to any command with the `--session` option. ex:\n" +
|
|
"$ bw list items --session " +
|
|
process.env.BW_SESSION,
|
|
);
|
|
res.raw = process.env.BW_SESSION;
|
|
return Response.success(res);
|
|
}
|
|
|
|
private async handleUpdatePasswordSuccessResponse(): Promise<Response> {
|
|
await this.logoutCallback();
|
|
this.authService.logOut(() => {
|
|
/* Do nothing */
|
|
});
|
|
|
|
const res = new MessageResponse(
|
|
"Your master password has been updated!",
|
|
"\n" + "You have been logged out and must log in again to access the vault.",
|
|
);
|
|
|
|
return Response.success(res);
|
|
}
|
|
|
|
private async updateWeakPassword(currentPassword: string) {
|
|
// If no interaction available, alert user to use web vault
|
|
if (!this.canInteract) {
|
|
await this.logoutCallback();
|
|
this.authService.logOut(() => {
|
|
/* Do nothing */
|
|
});
|
|
return Response.error(
|
|
new MessageResponse(
|
|
"Your master password does not meet one or more of your organization policies. In order to access the vault, you must update your master password now via the web vault. You have been logged out.",
|
|
null,
|
|
),
|
|
);
|
|
}
|
|
|
|
try {
|
|
const { newPasswordHash, newUserKey, hint } = await this.collectNewMasterPasswordDetails(
|
|
"Your master password does not meet one or more of your organization policies. In order to access the vault, you must update your master password now.",
|
|
);
|
|
|
|
const request = new PasswordRequest();
|
|
request.masterPasswordHash = await this.cryptoService.hashMasterKey(currentPassword, null);
|
|
request.masterPasswordHint = hint;
|
|
request.newMasterPasswordHash = newPasswordHash;
|
|
request.key = newUserKey[1].encryptedString;
|
|
|
|
await this.apiService.postPassword(request);
|
|
|
|
return await this.handleUpdatePasswordSuccessResponse();
|
|
} catch (e) {
|
|
await this.logoutCallback();
|
|
this.authService.logOut(() => {
|
|
/* Do nothing */
|
|
});
|
|
return Response.error(e);
|
|
}
|
|
}
|
|
|
|
private async updateTempPassword() {
|
|
// If no interaction available, alert user to use web vault
|
|
if (!this.canInteract) {
|
|
await this.logoutCallback();
|
|
this.authService.logOut(() => {
|
|
/* Do nothing */
|
|
});
|
|
return Response.error(
|
|
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,
|
|
),
|
|
);
|
|
}
|
|
|
|
try {
|
|
const { newPasswordHash, newUserKey, hint } = await this.collectNewMasterPasswordDetails(
|
|
"An organization administrator recently changed your master password. In order to access the vault, you must update your master password now.",
|
|
);
|
|
|
|
const request = new UpdateTempPasswordRequest();
|
|
request.key = newUserKey[1].encryptedString;
|
|
request.newMasterPasswordHash = newPasswordHash;
|
|
request.masterPasswordHint = hint;
|
|
|
|
await this.apiService.putUpdateTempPassword(request);
|
|
|
|
return await this.handleUpdatePasswordSuccessResponse();
|
|
} catch (e) {
|
|
await this.logoutCallback();
|
|
this.authService.logOut(() => {
|
|
/* Do nothing */
|
|
});
|
|
return Response.error(e);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Collect new master password and hint from the CLI. The collected password
|
|
* is validated against any applicable master password policies, a new master
|
|
* key is generated, and we use it to re-encrypt the user key
|
|
* @param prompt - Message that is displayed during the initial prompt
|
|
* @param error
|
|
*/
|
|
private async collectNewMasterPasswordDetails(
|
|
prompt: string,
|
|
error?: string,
|
|
): Promise<{
|
|
newPasswordHash: string;
|
|
newUserKey: [SymmetricCryptoKey, EncString];
|
|
hint?: string;
|
|
}> {
|
|
if (this.email == null || this.email === "undefined") {
|
|
this.email = await this.stateService.getEmail();
|
|
}
|
|
|
|
// Get New Master Password
|
|
const baseMessage = `${prompt}\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.collectNewMasterPasswordDetails(prompt, "Master password is required.\n");
|
|
}
|
|
|
|
if (masterPassword.length < Utils.minimumPasswordLength) {
|
|
return this.collectNewMasterPasswordDetails(
|
|
prompt,
|
|
`Master password must be at least ${Utils.minimumPasswordLength} characters long.\n`,
|
|
);
|
|
}
|
|
|
|
// Strength & Policy Validation
|
|
const strengthResult = this.passwordStrengthService.getPasswordStrength(
|
|
masterPassword,
|
|
this.email,
|
|
);
|
|
|
|
const enforcedPolicyOptions = await firstValueFrom(
|
|
this.policyService.masterPasswordPolicyOptions$(),
|
|
);
|
|
|
|
// Verify master password meets policy requirements
|
|
if (
|
|
enforcedPolicyOptions != null &&
|
|
!this.policyService.evaluateMasterPassword(
|
|
strengthResult.score,
|
|
masterPassword,
|
|
enforcedPolicyOptions,
|
|
)
|
|
) {
|
|
return this.collectNewMasterPasswordDetails(
|
|
prompt,
|
|
"Your new master password does not meet the policy requirements.\n",
|
|
);
|
|
}
|
|
|
|
// Get New Master Password Re-type
|
|
const reTypeMessage = "Re-type New Master password (Strength: " + strengthResult.score + ")";
|
|
const retype: inquirer.Answers = await inquirer.createPromptModule({ output: process.stderr })({
|
|
type: "password",
|
|
name: "password",
|
|
message: reTypeMessage,
|
|
});
|
|
const masterPasswordRetype = retype.password;
|
|
|
|
// Re-type Validation
|
|
if (masterPassword !== masterPasswordRetype) {
|
|
return this.collectNewMasterPasswordDetails(
|
|
prompt,
|
|
"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 (optional):",
|
|
});
|
|
const masterPasswordHint = hint.input;
|
|
const kdf = await this.stateService.getKdfType();
|
|
const kdfConfig = await this.stateService.getKdfConfig();
|
|
|
|
// Create new key and hash new password
|
|
const newMasterKey = await this.cryptoService.makeMasterKey(
|
|
masterPassword,
|
|
this.email.trim().toLowerCase(),
|
|
kdf,
|
|
kdfConfig,
|
|
);
|
|
const newPasswordHash = await this.cryptoService.hashMasterKey(masterPassword, newMasterKey);
|
|
|
|
// Grab user key
|
|
const userKey = await this.cryptoService.getUserKey();
|
|
if (!userKey) {
|
|
throw new Error("User key not found.");
|
|
}
|
|
|
|
// Re-encrypt user key with new master key
|
|
const newUserKey = await this.cryptoService.encryptUserKeyWithMasterKey(newMasterKey, userKey);
|
|
|
|
return { newPasswordHash, newUserKey: newUserKey, hint: masterPasswordHint };
|
|
}
|
|
|
|
private async handleCaptchaRequired(
|
|
twoFactorRequest: TokenTwoFactorRequest,
|
|
credentials: PasswordLoginCredentials = null,
|
|
): Promise<AuthResult | Response> {
|
|
const badCaptcha = Response.badRequest(
|
|
"Your authentication request has been flagged and will require user interaction to proceed.\n" +
|
|
"Please use your API key to validate this request and ensure BW_CLIENTSECRET is correct, if set.\n" +
|
|
"(https://bitwarden.com/help/cli-auth-challenges)",
|
|
);
|
|
|
|
try {
|
|
const captchaClientSecret = await this.apiClientSecret(true);
|
|
if (Utils.isNullOrWhitespace(captchaClientSecret)) {
|
|
return badCaptcha;
|
|
}
|
|
|
|
let authResultResponse: AuthResult = null;
|
|
if (credentials != null) {
|
|
credentials.captchaToken = captchaClientSecret;
|
|
credentials.twoFactor = twoFactorRequest;
|
|
authResultResponse = await this.loginStrategyService.logIn(credentials);
|
|
} else {
|
|
authResultResponse = await this.loginStrategyService.logInTwoFactor(
|
|
twoFactorRequest,
|
|
captchaClientSecret,
|
|
);
|
|
}
|
|
|
|
return authResultResponse;
|
|
} catch (e) {
|
|
if (
|
|
e instanceof ErrorResponse ||
|
|
(e.constructor.name === ErrorResponse.name &&
|
|
(e as ErrorResponse).message.includes("Captcha is invalid"))
|
|
) {
|
|
return badCaptcha;
|
|
} else {
|
|
return Response.error(e);
|
|
}
|
|
}
|
|
}
|
|
|
|
private async apiClientId(): Promise<string> {
|
|
let clientId: string = null;
|
|
|
|
const storedClientId: string = process.env.BW_CLIENTID;
|
|
if (storedClientId == null) {
|
|
if (this.canInteract) {
|
|
const answer: inquirer.Answers = await inquirer.createPromptModule({
|
|
output: process.stderr,
|
|
})({
|
|
type: "input",
|
|
name: "clientId",
|
|
message: "client_id:",
|
|
});
|
|
clientId = answer.clientId;
|
|
} else {
|
|
clientId = null;
|
|
}
|
|
} else {
|
|
clientId = storedClientId;
|
|
}
|
|
|
|
return clientId;
|
|
}
|
|
|
|
private async apiClientSecret(isAdditionalAuthentication = false): Promise<string> {
|
|
const additionalAuthenticationMessage = "Additional authentication required.\nAPI key ";
|
|
let clientSecret: string = null;
|
|
|
|
const storedClientSecret: string = this.clientSecret || process.env.BW_CLIENTSECRET;
|
|
if (storedClientSecret == null) {
|
|
if (this.canInteract) {
|
|
const answer: inquirer.Answers = await inquirer.createPromptModule({
|
|
output: process.stderr,
|
|
})({
|
|
type: "input",
|
|
name: "clientSecret",
|
|
message:
|
|
(isAdditionalAuthentication ? additionalAuthenticationMessage : "") + "client_secret:",
|
|
});
|
|
clientSecret = answer.clientSecret;
|
|
} else {
|
|
clientSecret = null;
|
|
}
|
|
} else {
|
|
clientSecret = storedClientSecret;
|
|
}
|
|
|
|
return clientSecret;
|
|
}
|
|
|
|
private async apiIdentifiers(): Promise<{ clientId: string; clientSecret: string }> {
|
|
return {
|
|
clientId: await this.apiClientId(),
|
|
clientSecret: await this.apiClientSecret(),
|
|
};
|
|
}
|
|
|
|
private async openSsoPrompt(
|
|
codeChallenge: string,
|
|
state: string,
|
|
): Promise<{ ssoCode: string; orgIdentifier: string }> {
|
|
return new Promise((resolve, reject) => {
|
|
const callbackServer = http.createServer((req, res) => {
|
|
const urlString = "http://localhost" + req.url;
|
|
const url = new URL(urlString);
|
|
const code = url.searchParams.get("code");
|
|
const receivedState = url.searchParams.get("state");
|
|
const orgIdentifier = this.getOrgIdentifierFromState(receivedState);
|
|
res.setHeader("Content-Type", "text/html");
|
|
if (code != null && receivedState != null && this.checkState(receivedState, state)) {
|
|
res.writeHead(200);
|
|
res.end(
|
|
"<html><head><title>Success | Bitwarden CLI</title></head><body>" +
|
|
"<h1>Successfully authenticated with the Bitwarden CLI</h1>" +
|
|
"<p>You may now close this tab and return to the terminal.</p>" +
|
|
"</body></html>",
|
|
);
|
|
callbackServer.close(() =>
|
|
resolve({
|
|
ssoCode: code,
|
|
orgIdentifier: orgIdentifier,
|
|
}),
|
|
);
|
|
} else {
|
|
res.writeHead(400);
|
|
res.end(
|
|
"<html><head><title>Failed | Bitwarden CLI</title></head><body>" +
|
|
"<h1>Something went wrong logging into the Bitwarden CLI</h1>" +
|
|
"<p>You may now close this tab and return to the terminal.</p>" +
|
|
"</body></html>",
|
|
);
|
|
callbackServer.close(() => reject());
|
|
}
|
|
});
|
|
let foundPort = false;
|
|
const webUrl = this.environmentService.getWebVaultUrl();
|
|
for (let port = 8065; port <= 8070; port++) {
|
|
try {
|
|
this.ssoRedirectUri = "http://localhost:" + port;
|
|
callbackServer.listen(port, () => {
|
|
this.platformUtilsService.launchUri(
|
|
webUrl +
|
|
"/#/sso?clientId=" +
|
|
"cli" +
|
|
"&redirectUri=" +
|
|
encodeURIComponent(this.ssoRedirectUri) +
|
|
"&state=" +
|
|
state +
|
|
"&codeChallenge=" +
|
|
codeChallenge,
|
|
);
|
|
});
|
|
foundPort = true;
|
|
break;
|
|
} catch {
|
|
// Ignore error since we run the same command up to 5 times.
|
|
}
|
|
}
|
|
if (!foundPort) {
|
|
reject();
|
|
}
|
|
});
|
|
}
|
|
|
|
private getOrgIdentifierFromState(state: string): string {
|
|
if (state === null || state === undefined) {
|
|
return null;
|
|
}
|
|
|
|
const stateSplit = state.split("_identifier=");
|
|
return stateSplit.length > 1 ? stateSplit[1] : null;
|
|
}
|
|
|
|
private checkState(state: string, checkState: string): boolean {
|
|
if (state === null || state === undefined) {
|
|
return false;
|
|
}
|
|
if (checkState === null || checkState === undefined) {
|
|
return false;
|
|
}
|
|
|
|
const stateSplit = state.split("_identifier=");
|
|
const checkStateSplit = checkState.split("_identifier=");
|
|
return stateSplit[0] === checkStateSplit[0];
|
|
}
|
|
}
|