1001Ferramentas
🚫 Security

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?
No. There are 108 entries hard-coded in the script, picked from the most recurrent ones worldwide and in Brazil. It is a quick worst-case filter, not a complete corpus.
It says OK. Is my password safe?
It only means the password is not in that list. Length, randomness and not reusing it across sites matter far more than this single check.
Does swapping letters for digits help?
Barely. The tool undoes the common substitutions before comparing, and real cracking tools apply the same mangling rules automatically.

Related Tools