The 5 most common password mistakes and how to fix each one today

The five most common password mistakes, in order of how often they lead to account compromise: password reuse across sites, using short passwords (under 12 characters), sharing passwords over unencrypted channels (text message, email), storing passwords in unencrypted notes (phone Notes app, desktop sticky notes, spreadsheet), and not enabling 2FA on critical accounts.

Security domain
Best Practices
Practical password security advice
Topic focus
Password mistakes
password-mistakes

How this is calculated

Password reuse is the number one cause of account takeover. One breached site exposes the password, and attackers try it on every other service. A password manager fixes this instantly by generating unique passwords. Short passwords are crackable by GPU clusters in hours to days. The fix is simple: use 16+ characters. Sharing passwords via text or email leaves a permanent unencrypted copy on the recipient's device, your device, and the service provider's servers. Use a password manager's secure sharing feature or an encrypted messaging app with disappearing messages. Storing passwords in unencrypted notes means anyone with access to your unlocked phone or computer can see them. Password managers encrypt at rest. Skipping 2FA leaves you with single-factor authentication. Enable it on email, banking, and any account with payment methods.

Verdict

All five mistakes are fixed by two tools: a password manager and 2FA. Set them up once. The time investment is 10 minutes. The security improvement is orders of magnitude.

More Passwords scenarios

Frequently asked questions

How long should a secure password be?
16 characters or more, drawn from uppercase, lowercase, numbers, and symbols. A 16-character mixed password is currently impractical to brute-force with commodity hardware, while 8-character ones can be cracked in hours by modern GPUs.
Is the generated password actually random?
Yes. The generator uses the browser's crypto.getRandomValues(), a cryptographically secure random source backed by OS entropy. The output is suitable for production password managers, API keys, and seed phrases.
Is my password saved anywhere?
No. The entire generator runs in your browser, with no network requests, no logging, and nothing stored. Close the tab and the password is gone from memory. Check your browser's Network tab to verify there are no outbound calls when a new password is generated.
What's the difference between a passphrase and a password?
A passphrase is a string of dictionary words (like "correct-horse-battery-staple"), long but memorable. A password is usually shorter with mixed character classes (like "Kx9$mQ2!pR"). Passphrases are typically stronger per character of memory effort, and this tool generates both styles.
Should I use the same password everywhere?
Never. Use a password manager (Bitwarden, 1Password, Apple Passwords) and generate a unique strong password for every site. Password reuse is the single biggest cause of account takeover. One breached service leaks the credential, and every other account using it is automatically compromised.
How often should I change my passwords?
Modern guidance (NIST SP 800-63B) says don't rotate strong unique passwords on a schedule. Only change them if you suspect compromise. Forced rotation encourages weak, incremented passwords. Strong password + password manager + 2FA is safer than any rotation policy.