Passwords & Authentication

Beginner ~7 min read
Your password is the front door to your entire digital life — and most people are still using a screen door. This is the single highest-impact habit you can fix today, and it takes about ten minutes. Let's lock things down properly.

Strong vs Weak Passwords

A weak password is an open door for attackers. Here's what separates a terrible password from a strong one:

❌ Weak Passwords ✅ Strong Passwords
password123T!g3r$unR1se#42
abccorrect-horse-battery-staple
john1990Xk9#mP2&vL5@qW8!

Length Beats Complexity

A longer password is exponentially harder to crack than a short complex one. "correct-horse-battery-staple" is far stronger than "P@ss1" even though it looks simpler. This is because of entropy — the measure of unpredictability in your password.

Aim for 16+ characters. Length is your best defense.

Multi-Factor Authentication (MFA)

MFA requires two or more verification factors. Even if an attacker steals your password, they can't log in without the second factor:

Something you know → Password or PIN
Something you have → Phone app (Authenticator), SMS code, hardware key
Something you are → Fingerprint, face scan

Password Managers

A password manager generates and securely stores unique, complex passwords for every account. You only remember one master password. Popular options include Bitwarden (free, open-source), 1Password, and Dashlane.

Never reuse passwords. A breach on one site shouldn't compromise all your accounts.

Interactive Demo: Password Strength Checker

Try typing a password below to see its strength evaluated in real time:

Strength: —
  • At least 12 characters
  • Uppercase letters (A–Z)
  • Lowercase letters (a–z)
  • Numbers (0–9)
  • Symbols (!@#$...)
🎯 Key Takeaway

Length beats complexity, never reuse a password, and turn on multi-factor authentication everywhere you can. A password manager makes all three effortless.

// Knowledge Check