Been trying all morning to figure out a regex pattern for an AD password restriction we're trying to enforce. Any ideas?
- MUST have at least one lower case character ( a-z )
- MUST have at least one upper case character ( A-Z )
- MUST have at least one numerical character ( 0-9 )
MUST have at least one of the following special characters, but must be able to permit all: ! @ # $ % ^ & * ( ) - _ + = { } [ ] | \ : ; " ' < > , . ? /
8 to 14 characters long
Can be in ANY order
I've tried about 50 combinations and the special characters part eludes me.
The one's I've found on here or online don't include the bracket special characters and a few others unfortunately.