도구 가이드
security 무료 회원가입 불필요

비밀번호 생성기

길이, 문자 집합 및 수량에 대한 세밀한 제어로 암호화 수준의 안전한 비밀번호를 생성합니다.

도구를 불러오는 중…

이 도구에 대해

브라우저의 WebCrypto API를 사용하여 진정한 무작위성으로 강력한 비밀번호를 생성합니다. 길이(8–128자) 제어, 문자 집합 선택(대문자, 소문자, 숫자, 기호), 사용자 지정 기호 집합 정의, 모호한 문자 제외 및 한 번에 최대 20개의 비밀번호 생성이 가능합니다. 발음 가능 모드는 기억하기 쉬운 비밀번호를 위해 자음과 모음을 교대합니다. 각 비밀번호는 강도 계기로 평가됩니다.

사용 방법

  1. 1 슬라이더를 사용하여 원하는 비밀번호 길이를 설정하세요(8–128).
  2. 2 문자 집합을 전환하세요: 대문자, 소문자, 숫자, 기호.
  3. 3 선택적으로 '모호한 문자 제외'를 활성화하거나 제외할 문자를 입력하세요.
  4. 4 수량(1–20)을 설정하고 생성을 클릭한 후 개별 또는 전체 비밀번호를 복사하세요.

What the "advanced" options give you

A basic password generator picks random characters from a fixed pool. This advanced version exposes the dials that matter when you have specific requirements to satisfy: a custom symbol set, the ability to strip out characters a particular system rejects, a pronounceable mode for passwords you must type or read aloud, and bulk generation of up to 20 passwords at once. Every random character is drawn from the browser's cryptographic generator (crypto.getRandomValues), and the whole process runs locally — nothing you generate is sent anywhere.

One detail worth knowing: the tool uses rejection sampling to pick each character. Naively doing random % poolSize introduces a tiny bias toward the first few characters in the set, because the random range rarely divides evenly. This generator discards the few out-of-range values and re-rolls, so every character in your pool is exactly equally likely. That's the difference between "random-looking" and "uniformly random."

Tailoring the character set to a site's rules

Plenty of systems impose maddening, undocumented password rules. The advanced controls let you match them precisely:

  • Custom symbol set. Instead of a fixed list of punctuation, you supply exactly which symbols are allowed. If a bank only accepts !@#$, paste those four characters and nothing outside them appears.
  • Exclude specific characters. Type any characters to ban them outright — useful when a legacy system chokes on, say, <, >, or backslashes.
  • Exclude ambiguous characters. One checkbox removes the look-alikes 0 O l 1 I. This matters when a password will be read off a screen, dictated over the phone, or typed from a printout, where 0/O and l/1 cause errors.

After applying these filters the tool also de-duplicates the pool, so adding overlapping sets never quietly weights some characters more than others.

Pronounceable mode: what it trades

Toggle Pronounceable and the generator stops drawing from the full character pool and instead alternates consonants and vowels — producing strings like taborimuke that you can actually say and remember. This is genuinely useful for temporary passwords you'll read aloud to a colleague, or a memorable Wi-Fi guest code.

Be clear-eyed about the trade-off, though. Alternating consonant/vowel from a 21-letter and 5-letter pool yields far fewer combinations per character than a random mix of 90-plus symbols. A pronounceable password needs to be noticeably longer to reach the same strength as a fully random one. Use pronounceable mode for low-stakes, short-lived, or human-relayed passwords — not for your password manager's master key.

A worked example: bulk generation

Say you're provisioning ten new user accounts and each needs a starter password with no ambiguous characters. Set Length to 16, leave uppercase, lowercase, digits, and symbols enabled, tick Exclude ambiguous characters, set Quantity to 10, and click Generate. You get ten distinct 16-character passwords, each with its own strength meter, plus a Copy All button that puts them on your clipboard one per line — ready to paste into a spreadsheet or onboarding script. No two are alike, and none contains 0 O l 1 I.

Reading the strength meter

Each generated password gets a Weak / Fair / Good / Strong rating. The score rewards length thresholds (12, 16, and 24 characters) and the presence of each character class — uppercase, lowercase, digits, and symbols. Two practical takeaways:

  • Length is the biggest lever. Crossing 16 and 24 characters bumps the score on its own. Adding one more character type helps, but stretching the length helps more.
  • Pronounceable passwords read as weaker here, and rightly so — they use only lowercase letters, so they miss the uppercase, digit, and symbol points. Compensate with extra length.

Tips and common mistakes

  • Don't over-restrict the pool. Excluding too many characters shrinks the space attackers must search. Remove only what a system genuinely forbids.
  • Keep at least one character class on. If you disable every class (and aren't in pronounceable mode), there's nothing to draw from — the tool will ask you to enable at least one.
  • Generate fresh per account. Bulk mode exists so you don't reuse one password across many accounts; reuse is the single biggest real-world breach vector via credential stuffing.
  • Store, don't memorise. Put random passwords in a password manager. Reserve pronounceable mode for the rare cases where a human truly has to recall or speak the password.
  • Copy All is plain text. Once on your clipboard, the list is unencrypted — paste it into your manager promptly and clear your clipboard afterward rather than leaving passwords sitting there.

자주 묻는 질문

{# Alpine.js — self-hosted. (The previous jsdelivr CDN tag had a stale SRI integrity hash, so the browser refused to run it and window.Alpine was never defined — silently breaking every FAQ accordion and Alpine tool.) #}