8-character password generator
This generator creates a random 8-character password using uppercase and lowercase letters, numbers, and symbols — 51.4 bits of entropy drawn from 3.0 x 10^15 possible combinations. Too short in 2026. Use it only where a system refuses anything longer.
- Entropy
- 51.4 bits
- Possible passwords
- 3.0 x 10^15
- GPU, fast hash
- 4 hours
- GPU, PBKDF2 600k
- 284 years
Is 8 characters enough?
Eight characters was the industry default for two decades because early UNIX password hashing truncated at eight. That constraint disappeared in the 1990s; the habit did not. A modern GPU rig working on a stolen database of fast hashes exhausts the entire 8-character space in hours.
When to use a 8-character password
A legacy banking portal, an airline booking system, or a point-of-sale terminal caps you at eight. In that case, make all eight random and enable two-factor authentication, because the password alone is not carrying the account.
What to watch out for
Any 8-character password you invented yourself is far weaker than the number below suggests. The figure assumes true randomness; 'Summer24!' is guessed in seconds.
How long this password survives each attack
"Time to crack" is meaningless without naming the attack. The same password fails in an afternoon or outlives the sun depending on how the website stored it. These are average times — half the keyspace — for this password:
| Attack scenario | Guesses / second | Average time |
|---|---|---|
| Throttled login form | 100 | 474 thousand years |
| Stolen database, unsalted fast hash | 100 billion | 4 hours |
| Stolen database, PBKDF2 with 600,000 iterations | ~167,000 | 284 years |
The third row is why key stretching matters so much. MoolKey runs PBKDF2 at 600,000 iterations for the same reason: it costs you a fraction of a second and costs an attacker a factor of 600,000.
You still have to keep it somewhere
A 8-character random string is not memorable, and pretending otherwise is how people end up with a sticky note. Either store it in a password manager, or use a generator that can recreate it on demand from one phrase you already remember — which means there is no stored copy for anyone to steal.
8-character password questions
- Is a 8-character password strong enough?
- A random 8-character password using uppercase, lowercase, numbers, and symbols carries 51.4 bits of entropy. Too short in 2026. Use it only where a system refuses anything longer. Against an offline attack on a fast hash at 100 billion guesses per second, the average time to crack it is 4 hours.
- How many 8-character passwords are possible?
- With a pool of 86 symbols there are 3.0 x 10^15 possible 8-character passwords. That figure only protects you if your password was chosen at random from all of them — a password you invented sits in a far smaller set that attackers search first.
- How long does it take to crack a 8-character password?
- It depends entirely on how the site stored it. On a rate-limited login form at 100 guesses per second: 474 thousand years. Against a stolen database of fast hashes on a GPU cluster: 4 hours. Against a properly stretched PBKDF2 hash with 600,000 iterations: 284 years.
- Is this 8-character generator safe?
- Yes. It runs entirely in your browser using crypto.getRandomValues, the cryptographic random source provided by your operating system. No password is transmitted, logged, or stored. You can disconnect from the network and the generator still works.
More free tools
Every tool runs in your browser without an account. The generators, strength checker, and entropy calculator keep inputs local. The breach checker sends only a five-character hash prefix to Have I Been Pwned.
Passphrase generator
A passphrase is several random words joined together, such as "trout-canyon-mellow-drift".
PIN generator
A PIN generator picks digits at random instead of letting you reach for a birthday.
Strength checker
A password strength checker estimates how many guesses an attacker needs before reaching your password.
Breach check
A breach check tells you whether a password already appears in leaked data.
Entropy calculator
Password entropy measures how many guesses an attacker needs, expressed in bits.
Make one account easier today.
Start with the password you keep reusing or the bank card that still shares a PIN. MoolKey is free, and you do not need to move everything at once.
