Strong WiFi Password — What It Means, With Real Examples

Most WiFi passwords aren't strong — they're guessable, which is a different thing. This covers exactly what strong means, the entropy numbers behind it, real examples at every level, and the mistakes that make a long password weak.

Published May 14, 2026 · Updated July 26, 2026 · 14 min read · Security
Generate a 16-character password
Runs in your browser — nothing stored or sent
92.5 bits of entropy
Need bulk generation, passphrases, PINs, or a strength analyzer? Open the full Password Generator →

What actually makes a WiFi password strong?

Strong has a precise meaning here. A password is strong when the number of guesses needed to find it is astronomically large, even for an attacker with serious hardware. The measure is entropy, in bits, and each bit doubles the work required. At 80 bits, a trillion-guess-per-second attack runs longer than the universe has existed.

Five rules get you there — and note that none of them is "add a capital letter and an exclamation mark":

📏
1. At least 16 characters
Length is the biggest single driver of entropy. Each extra character multiplies the keyspace by the pool size — around 62 for letters and numbers. Going from 12 to 16 characters takes you from roughly 71 to 95 bits, which is about 15 million times harder to brute-force.
🎲
2. Completely random — no words, names, or patterns
Attackers don't try every combination. They try dictionary words, names, dates, keyboard walks like qwerty and asdf, and common substitutions first. Randomness is what defeats all of that; length alone does not.
🔡
3. Uppercase, lowercase, and numbers
All three types together take the pool from 26 characters per position to 62. At 16 characters that's the difference between about 75 and 95 bits. Symbols are optional — 62 characters at 16 length is already past any realistic attack.
👁️
4. No ambiguous characters (I, l, 1, O, 0)
Capital I, lowercase l, and the digit 1 are indistinguishable in most fonts, as are capital O and zero. When someone reads the password off a screen or a printed card, these are where the mistakes happen. A strong password also has to be a usable one.
⚙️
5. Generated, not invented
Even security-conscious people produce biased output when they invent passwords by hand — research consistently shows human 'random' clusters around predictable patterns. Use a generator built on crypto.getRandomValues(), not Math.random().

The entropy math, in full

Entropy tells you precisely how hard a password is to crack, and the formula is short enough to check yourself:

// Formula
entropy = log₂(pool_sizelength)
Upper + lower + numbers → pool = 62
12 chars: log₂(6212) = 71.45 bits
16 chars: log₂(6216) = 95.27 bits
// Crack time at 10¹² guesses/sec
12 chars: 3.23 × 10²¹ ÷ 10¹² = ~102 years
(expected: half that, so ~51 years)

For scale: the fastest publicly documented WPA2 cracking rigs — clusters of high-end GPUs — test on the order of a trillion candidates per second. A random 12-character alphanumeric password is out of reach for that hardware. A 12-character password built on a dictionary word is cracked in milliseconds, because the real search space is a few thousand words rather than 3.23 × 10²¹ combinations.

Password length compared: 8 vs 10 vs 12 vs 14 vs 16 vs 20

All values use the 62-character alphanumeric pool. Crack times assume a trillion guesses per second — the top end of offline attack speed against WPA2.

LengthEntropyCombinationsCrack timeVerdictBest for
847.6 bits2.18 × 10¹⁴~2.5 days❌ Too weakThe WPA2 protocol floor. Crackable over a weekend with a consumer GPU.
1059.5 bits8.39 × 10¹⁷~26 years⚠️ MarginalWithin reach of a well-resourced attack. Avoid for anything that matters.
1271.5 bits3.23 × 10²¹Centuries✅ StrongPractical minimum. Fine for most home networks and everyday accounts.
1483.4 bits1.24 × 10²⁵Billions of years✅ Very strongBeyond any practical attack. A good choice if 16 feels like too much to type.
16USE THIS95.3 bits4.77 × 10²⁸Heat death of the universe✅ ExcellentThe recommended default. No realistic attack touches this.
20119.1 bits7.04 × 10³⁵Astronomical✅ Maximum marginFor password manager master keys, admin credentials, or QR-only networks.

The jump from 12 to 16 is the single most valuable change you can make. Four extra characters multiply the keyspace by 62⁴, roughly 14.8 million times, moving crack time from "centuries" to "longer than the universe has existed." If you share the password by QR code and never type it manually, there is no reason not to go to 20.

Why the character set matters as much as the length

"12 characters" on its own says nothing. Twelve lowercase letters and twelve mixed-case alphanumerics are different passwords by a factor of tens of thousands:

Character setPoolAt 12 charsAt 16 charsAssessment
Lowercase only (a–z)2656.4 bits75.2 bitsNever use — eliminated in seconds by any modern attack
Numbers only (0–9)1039.9 bits53.2 bitsPINs only. Genuinely weak as a WiFi password
Lowercase + numbers3662.0 bits82.7 bitsDecent at 16 characters, marginal at 12
Upper + lower + numbers6271.5 bits95.3 bitsThe WiFi sweet spot — strong at 12, excellent at 16, no keyboard friction
Upper + lower + numbers + symbols9578.8 bits105.0 bitsBetter on paper, worse in practice for WiFi — see the symbols section below

Should a WiFi password have symbols?

Symbols raise entropy — at 12 characters they take you from about 71 to 79 bits. But WiFi is the one place where the usability cost usually outweighs that. Phone keyboards require mode-switching, TV and console remotes turn it into a chore, and a handful of router firmwares mishandle backslashes, quotes, and semicolons badly enough to silently truncate the password.

The better trade: add four characters instead of symbols. Going from 12 to 16 without symbols gains you 24 bits. Adding symbols to a 12-character password gains you 8. Save the symbols for your router admin login, which you only ever type on a real keyboard.

What each strength level looks like

Entropy estimates below assume the 62-character alphanumeric pool.

Very weak
< 28 bitscrack: Seconds
12345678passwordqwerty123
Automated tools crack a captured handshake with this in seconds. Never use.
Weak
28–40 bitscrack: Minutes to hours
Smith2024!homewifi1letmein99
Dictionary-based. A GPU cluster gets through these within hours of capturing the handshake.
Fair
40–60 bitscrack: Days to months
bV9nDzKp2mRk7mXqN3vB
Random but short. Acceptable for a throwaway network, not for home use.
Strong
60–80 bitscrack: Centuries
bV9nDzKp2mXrRk7mXqN3vBwJ
A 12-character random password. Good for most home networks — this is the practical floor.
Very strong
80–120 bitscrack: Longer than the universe has existed
Rk7mXqN3vBwJ2Pc9Nt4KpRb8WzHj3Fqm
16 characters, random. The recommended default for every home and business network.

Strong WiFi password examples

These illustrate what properly generated passwords look like. Don't use any of them. A password published anywhere is no longer random. The last entry is included deliberately, to show that length by itself proves nothing.

Rk7mXqN3vBwJ2Pc9
16-char random~95 bitsRecommended
Uppercase, lowercase, numbers. No ambiguous characters. This is what the generator produces by default.
Nt4KpRb8WzHj3Fqm
16-char random~95 bitsRecommended
Same settings, completely different output — every generation is independent.
Marble-Forest-Zephyr-Knight-42
5-word passphrase~65 bitsBest for sharing aloud
Readable across a room without spelling anything. Strong enough for home WiFi.
bV9nDzKp2mXr
12-char random~71 bitsMinimum strong
The floor. Strong for most uses, but 16 is better wherever you can manage it.
Fluffy2024IsMyDog!
18-char invented phrase~25 bits (real)Weak despite length
Longer than every example above and far weaker. Base word plus year plus symbol is a single mutation class in cracking software — this falls in seconds.

Weak WiFi password examples — and why they fail

These patterns appear on a startling share of home networks. If yours resembles any of them, change it today.

Weak passwordWhy it fails
mypasswordDictionary word — cracked in milliseconds
12345678Sequential digits — the first thing any attack tries
Smith2024!Family name plus year plus symbol — a textbook mutation pattern
192.168.1.1Router IP. Attackers know routers inspire this choice
homewifi123Common prefix plus digits — in every wordlist
Password123!The most-attempted string globally, mixed characters notwithstanding
JohnDoe#45Name-based — findable on social media in seconds
iloveyou2024Phrase plus year. Enormous dictionaries of these exist

Why "random" matters more than length

Here is the counterintuitive part: a genuinely random 8-character password is harder to crack than a 20-character password built from a phrase.

Cracking software does not start at aaaaaaaa and count upward. It starts from the most likely candidates — dictionary words, names, dates, keyboard walks — and then applies mutation rules: capitalise the first letter, swap letters for lookalike digits, append a year, append a symbol. Fluffy2024! is eleven characters and falls inside the first million candidates of a targeted attack. bV9nDzKp2mXr is twelve characters and appears in no dictionary or pattern at all, so the attacker has no choice but to brute-force 3.23 × 10²¹ combinations.

Seven mistakes that make a WiFi password weak

1
Using your address or postcode
Public records and social media make these trivially discoverable. Anyone targeting your specific network tries them first.
2
Keeping the router's default password
ISP-generated passwords for popular router models follow known algorithms, several of which have been reverse-engineered and published. Entire neighbourhood ranges have been cracked from MAC addresses alone.
3
Adding numbers or symbols to a dictionary word
P@ssw0rd1 is weaker than Rk7m. The first appears in every dictionary attack with substitution rules applied; the second appears nowhere at all.
4
Keeping it short so it's memorable
For WiFi, memorability and strength pull in opposite directions. You shouldn't need to memorise it — save it in a password manager and share it by QR code.
5
Reusing your router admin password
Two separate attack surfaces. Someone who gets your WiFi key should not thereby get control of the router itself.
6
Basing it on a pet, team, or band
Open-source intelligence gathering pulls all of this from public profiles in minutes, and a targeted attack tries your known personal details before it tries brute force.
7
Keyboard walks (qwerty, asdfgh, zxcvbn)
Keyboard patterns are among the first heuristics applied by cracking software and appear in virtually every wordlist.

How WiFi passwords actually get cracked

Understanding the attack explains the defence. There are three routes:

💻 1. Offline dictionary and brute-force attacks
The handshake between your device and the router when it connects can be captured passively with a laptop and a wireless adapter, without ever joining your network. That capture is then tested against billions of candidates offline, with no rate limiting and nothing showing up in your router logs. Modern GPUs test hundreds of thousands of WPA2 candidates per second. An 8-character lowercase password has 26⁸ combinations — about four minutes of work. A 16-character alphanumeric password has 62¹⁶, which is roughly 4.7 × 10²⁸, and is simply not reachable.
🏷️ 2. Default password attacks
Routers supplied by ISPs often generate their default password from the serial number, the MAC address, or a model-specific algorithm. Several of those algorithms have been reverse-engineered and published. An attacker in range can read the MAC address off the air and generate a short candidate list in seconds. If you are still using the password printed on the label, that is the single most urgent thing to change.
🕵️ 3. Social engineering and OSINT
A great many people base their WiFi password on something publicly known about them: an address, a family name, a pet, a postcode, a birth year. Open-source intelligence techniques collect all of it from social media, electoral rolls, and company directories in minutes. A targeted attack works through every variation of your known personal details before it falls back to brute force.

Passphrases: strong and sayable

A passphrase is a run of randomly chosen words rather than random characters — something like Marble-Forest-Zephyr-Knight-42. The critical word is randomly. A passphrase is not a memorable sentence you composed; it is a set of words picked by a cryptographically secure generator from a large wordlist. That distinction is the whole ballgame.

Our generator draws from the EFF's 7,776-word list, which gives about 12.9 bits per word:

  • 4 words: log₂(7776⁴) ≈ 51.7 bits — matches a random 8-character password
  • 5 words: log₂(7776⁵) ≈ 64.6 bits — the WiFi sweet spot
  • 6 words: log₂(7776⁶) ≈ 77.5 bits — for a password manager master key

The advantage is entirely practical: you can read Marble-Forest-Zephyr-Knight across a noisy room, where Rk7mXqN3vBwJ2Pc9 has to be dictated character by character while someone asks whether that was a capital or lowercase K.

⚠️ "correct horse battery staple" is not secure
The phrase from the XKCD comic is famous worldwide and sits in every serious wordlist. The same applies to any passphrase you find in a blog post or an example — including the ones on this page. And "summer vacation beach trip" is not a passphrase either; it's a phrase you composed, and attackers test semantic collocations, idioms, and song lyrics. The randomness has to come from the generator, not from you.

Passphrase or random password?

Random (16 chars)Passphrase (5 words)
Entropy~95 bits~65 bits
Crack resistanceEffectively uncrackableVery strong (centuries)
Telling someone verbally❌ Spell every character✅ Just read the words
Typing on a phone⚠️ Requires care✅ Standard letters only
Typing on a TV remote⚠️ Tedious✅ Much easier
Sharing by QR code✅ Ideal✅ Works fine
Best forQR-only networksNetworks you share out loud

What NIST says (2024 guidelines)

NIST's Special Publication 800-63B — the most widely cited password standard — was updated in 2024. The changes relevant here:

  • Length over complexity. NIST dropped mandatory rules requiring an uppercase letter, a number, and a symbol. Research showed those rules just produced predictable substitutions like p@ssw0rd without improving security.
  • 8-character minimum, 15+ encouraged. Eight is the floor, explicitly not the target.
  • Support at least 64 characters. Services should never cap passwords at 12 or 16.
  • No scheduled rotation. The "change it every 90 days" rule is gone. Change a strong password only if it's compromised.
  • Check against breach databases. Reject passwords appearing in known breaches regardless of length.

What different platforms actually require

Platform / standardMinimumMaximumSymbols
WPA2 / WPA3 WiFi863 charactersOptional
Most bank websites816+ recommendedOften required
Google / Gmail8No limitOptional
Apple ID8No limit1 number required
NIST SP 800-63B (2024)864+ supportedNever mandatory
PCI-DSS v4 (payment systems)12No limitYes
CIS Benchmark (workstations)14No limitYes

Most consumer services still set an 8-character minimum, well below what's safe. PCI-DSS v4 — the standard governing payment card systems — moved to 12 in 2024, which is a decent signal that 12 is becoming the industry floor for anything security-conscious.

Run two networks, not one

The cleanest setup for a household or small business: your main network plus a guest network. Most modern routers and every mesh system support this natively.

  • Main network: 16-character random password, never shared verbally, distributed by QR code to people you trust. Changed only if compromised.
  • Guest network: 5-word passphrase, shareable out loud, rotated whenever the access group changes. No route to your NAS, printers, cameras, or smart home hardware.

This way you never trade your main network's security for guest convenience. There's more on naming and sharing in the WiFi password ideas guide.

Related tools

Generate one on the WiFi Password Generator — it's locked to WiFi-safe settings, with a passphrase mode built in. Want 12 characters specifically? That works too. Then make a WiFi QR code so nobody has to type it. For a separate router admin password with symbols, bulk generation, PINs, or a strength analyzer, use the full Password Generator.

Frequently asked questions

What makes a WiFi password strong?

At least 16 characters, generated rather than invented, with no dictionary word, name, date, or keyboard pattern in it. Uppercase, lowercase, and numbers give a 62-character pool, which at 16 characters reaches about 95 bits of entropy. Randomness matters more than variety — a random 12-character string beats a 20-character phrase you thought up.

Is a 12-character password strong enough for WiFi?

Yes, for most home networks. A random 12-character alphanumeric password has roughly 71 bits of entropy — around 50 years of expected cracking time at a trillion guesses per second. But random is doing all the work there. Treat 12 as your minimum and 16 as your default.

What are strong WiFi password examples?

Rk7mXqN3vBwJ2Pc9 (16-char random, ~95 bits) or Marble-Forest-Zephyr-Knight-42 (5-word passphrase, ~65 bits). Never use a published example — including these. Generate your own.

How many bits of entropy does a password have?

Entropy = log₂(pool_size ^ length), and each bit doubles the guesses required. 12 characters from a 62-character pool gives ~71.5 bits; 16 characters gives ~95. Under 40 bits is weak, 60 is good, 80+ is beyond any practical attack.

Is "Password123!" a strong WiFi password?

No — it's among the most-tested strings in every cracking dictionary, despite the mixed characters. Crackers start from dictionary words and apply mutation rules: capitalise, substitute lookalike digits, append a year or a symbol. All of those transformations are already built in.

Should my WiFi password have symbols?

Not necessarily. 16 alphanumeric characters already reach ~95 bits. Symbols force keyboard-switching on phones, are painful on TV remotes, and are mishandled by some router firmware. Adding four more characters beats adding symbols — 24 bits versus 8.

Is a passphrase better than a random password for WiFi?

It depends on how you share it. A 5-word passphrase from the EFF list reaches ~65 bits and can be read aloud. A 16-character random password reaches ~95 bits but has to be dictated character by character. Passphrase for in-person sharing, random password for QR codes.

Can my WiFi password be cracked?

A WPA2 handshake can be captured passively and attacked offline, with no rate limiting and nothing in your router logs. Short or dictionary-based passwords fall in minutes to hours. A random 16-character password cannot be brute-forced in any meaningful timeframe.

What is the hardest WiFi password to crack?

A fully random 20-character password with letters, numbers, and symbols — around 119 bits, beyond any attacker including nation-state hardware. In practice 16 random alphanumeric characters (~95 bits) is already uncrackable, so 20 is for extra margin when you only share by QR code.