Security

Strong Password

At least 8 chars, 1 uppercase, 1 lowercase, 1 number, 1 special char

/^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[@$!%*?&])[A-Za-z\d@$!%*?&]{8,}$/

Type in the box above to test if your input matches the regex pattern.

Test Cases

P@ssw0rd123
Strong!1
password
12345678
NoSpecialChar1

Tags

#security #auth #password