Common Password Blacklist Check
Checks a password against the top 1000 most-used passwords, fully client-side, and flags it as compromised.
A senha nunca sai do seu navegador — checagem 100% client-side.
—
Is your password on the obvious list
Before anyone bothers with brute force, they run a ready-made list of the passwords everybody picks. It is cheap and it works: if yours is password123, qwerty or a football club, length and symbols buy you nothing, because the guess lands within the first few dozen tries. Running your older passwords against a list like this is a fast way to decide which ones to rotate first.
The check lower-cases your input and compares it against a list built into the script, 108 entries covering global classics plus Brazilian favourites such as club names. The tool description mentions a thousand passwords; what actually ships in the code is that smaller sample. On a miss, the string goes through leet normalization (0 to o, 1 to i, 3 to e, 4 to a, at-sign to a, dollar to s) and gets checked again. That is how p@ssw0rd gets flagged.
Matching is exact, so password1234 comes back clean even though it is as guessable as password123. Read a hit as a verdict and a clean result as nothing more than absence from those 108 entries. For a real check, use a Pwned Passwords lookup with k-anonymity, which covers billions of leaked credentials. Whatever you type stays local: the script issues no network request, the list lives inside it.
Frequently asked questions
Does it really hold a thousand passwords?
It says OK. Is my password safe?
Does swapping letters for digits help?
Related Tools
Password Strength Checker
Analyze the strength of any password: length, character classes, entropy in bits and resistance estimate. Processed in the browser — the password never leaves your device.
Bcrypt Hash Generator
Generate secure bcrypt hashes from passwords and verify whether a password matches an existing bcrypt hash.
Cache-Control Security Check
Analyse Cache-Control and warn when sensitive content may be cached by proxies (missing no-store, private, etc.).
Password Crack Time Estimator
Estimates brute-force cracking time for a password in three scenarios (online, offline and GPU), from its length and character set. It does not check any leaked-password dictionary.
Password Generator
Generate strong, random passwords with custom length, uppercase letters, numbers and symbols. Generated in the browser — no data leaves your device.
Password Policy Batch Auditor
Tests a list of passwords against the policy you define, showing which fail, which rules they break and the equivalent regex.