Password Strength Checker
Type or paste a password to see how strong it is. It's checked right here in your browser - nothing is sent anywhere or saved.
Type or paste a password to see how strong it is. It's checked right here in your browser - nothing is sent anywhere or saved.
The score starts from entropy - the length of the password times the bits each character carries, based on which character types it uses (lowercase, uppercase, digits, symbols). Then it discounts the predictable stretches: a run of the same character or a straight sequence like 1234 adds almost nothing real, so those characters are dropped from the count. A password that shows up on common-leak lists is capped at the bottom no matter how it looks.
The estimate assumes an attacker who has stolen a password database and is guessing offline against a fast hash - around 10 billion tries a second on commodity hardware. That's a deliberately pessimistic setup. A site that uses a slow, salted hash like bcrypt or Argon2 would take orders of magnitude longer, so treat the number as a worst case, not a promise.
Everything runs in your browser with JavaScript - the password never leaves the page, isn't logged, and isn't checked against any online list. There's no network request involved at all. That's the whole point: you can paste a password you genuinely rely on and find out whether it holds up, without trusting a server with it.