비밀번호 정책 생성기

보안 요구사항에 맞는 비밀번호 유효성 검사 규칙과 정규식 패턴을 생성합니다

모든 처리는 브라우저에서 이루어집니다. 데이터가 업로드되지 않습니다.
Offline Ready

Password Policy Generator

Configure password requirements, generate a matching regex pattern, and get a human-readable policy description.

🔒모든 처리는 브라우저에서 이루어집니다. 데이터가 업로드되지 않습니다.
Policy Configuration
minimum
minimum
minimum
minimum
Generated Regex Pattern
^(?=.*[A-Z])(?=.*[a-z])(?=.*\d)(?=.*[!@\#\$%\^&\*\(\)_\+\-=\[\]\{\}\|;:\,\.<>\?])[A-Za-z0-9!@\#\$%\^&\*\(\)_\+\-=\[\]\{\}\|;:\,\.<>\?]{8,128}$
Policy Description
  1. Password must be between 8 and 128 characters long.
  2. Must contain at least 1 uppercase letter (A-Z).
  3. Must contain at least 1 lowercase letter (a-z).
  4. Must contain at least 1 digit (0-9).
  5. Must contain at least 1 special character (!@#$%^&*()_+-=[]{}|;:,.<>?).
  6. Spaces are not allowed.
  7. Must not be a commonly used password.
Test a Password
Enter a password to test against the policy