mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-05 09:10:53 +01:00
cleanup auditservice
This commit is contained in:
parent
1aabb42e47
commit
e1041e9b5b
@ -3,24 +3,21 @@ import { CryptoService } from '../abstractions/crypto.service';
|
||||
const PwnedPasswordsApi = 'https://api.pwnedpasswords.com/range/';
|
||||
|
||||
export class AuditService {
|
||||
|
||||
constructor(private cryptoService: CryptoService) {
|
||||
}
|
||||
|
||||
async passwordLeaked(password: string): Promise<number> {
|
||||
const hash = (await this.cryptoService.sha1(password)).toUpperCase();
|
||||
|
||||
const response = await fetch(PwnedPasswordsApi + hash.substr(0, 5));
|
||||
const leakedHashes = await response.text();
|
||||
|
||||
const hashStart = hash.substr(0, 5);
|
||||
const hashEnding = hash.substr(5);
|
||||
|
||||
const match = leakedHashes
|
||||
.split(/\r?\n/)
|
||||
.find((v) => {
|
||||
return v.split(':')[0] === hashEnding;
|
||||
});
|
||||
const response = await fetch(PwnedPasswordsApi + hashStart);
|
||||
const leakedHashes = await response.text();
|
||||
|
||||
return match ? parseInt(match.split(':')[1], 10) : 0;
|
||||
const match = leakedHashes.split(/\r?\n/).find((v) => {
|
||||
return v.split(':')[0] === hashEnding;
|
||||
});
|
||||
|
||||
return match != null ? parseInt(match.split(':')[1], 10) : 0;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user