Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 746 Bytes

README.md

File metadata and controls

32 lines (23 loc) · 746 Bytes

hibp-checker

Anonymously query the haveibeenpwned.com API to fetch the number of times a password has appeard in breached data sets using K-anonymity

Installation

npm install --save hibp-checker

Usage

API

const checkPassword = require('hibp-checker');
const breachCount = await checkPassword('hunter2');
console.log(`Breached ${breachCount} times`);

Command Line

> hibp-checker
Enter password to check: *********
Password frequency: 123

Reading