
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
havetheybeenpwned
Advanced tools
Test if your user's password has been pwned using the haveibeenpwned.com API
Test if your user's password has been pwned using the haveibeenpwned.com API
npm install --save havetheybeenpwned
import pwned from "havetheybeenpwned"
pwned("hunter42").then(isPwned => {
console.log(isPwned) // true (pwned)
})
That's it!
In case you want to use this outside of NodeJS or the browser, here are some instructions (with JS examples) for checking the API yourself.
If you do implement this in another language, please open a PR and link it here.
For the haveibeenpwned API we'll need to create a hashed version of the password in a format that the API expects.
import crypto from "crypto"
let hashed = crypto.createHash("sha1")
.update(password)
.digest("hex")
.toUpperCase()
We'll want to split the hashed password up into two parts:
range is the first 5 characters of the hashed passwordsuffix is all of the remaining characters after the 5th characterlet range = hashed.slice(0, 5)
let suffix = hashed.slice(5)
rangeNext we're going to use the range to search for a whole bunch of possibly
matching suffixes.
let response = await fetch(`https://api.pwnedpasswords.com/range/${range}`)
let body = await response.text()
The body of the response will be in a text format like this:
005AB7658808E601CFBDA6B0822528E04EE:2
009A9DD8B92851C415994A6C68C3201F4D0:4
01F87CAC7825BD01CF025AE084EE6C85B47:4
02508FED8ADD9AB9D69E94D36CC8802C6ED:2
0372C8FB7D3EB9A8F9FBECC5904B84B69BF:3
0398AC94A63C1511136F3AA54287B358DA8:1
041E754C507CD6DD1E9B5D64C570818E255:1
04283CD001FF04F247EBA8B7A332C75A514:1
042C331F039E3A7E429C50B54C7AC8D2871:2
0447B3263150D2381042F83C16AD53A2E5F:3
0457CA8733A7618C8CB8232FDA2B3083675:7
04C8D1F5884F61EBE3B890C8B9EFBB71774:19
suffixEach line in the response is are the "suffixes" that match the "range" followed by a colon and a number of times the password has been pwned.
Search for your suffix in the list. If it is present, the password has been pwned, if its not the password has not been pwned.
let regex = new RegExp(`^${suffix}:`, 'm')
regex.test(body) // true (pwned), false (not pwned)
FAQs
Test if your user's password has been pwned using the haveibeenpwned.com API
We found that havetheybeenpwned demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.