Table of Contents | ||||||
---|---|---|---|---|---|---|
|
Einleitung
...
Introduction
Different password policies can be defined for each target system. The policy always consists of a combination of a regex pattern array and a validation text, which in turn is defined as a name key. The name key in turn allows the text to be translated into multiple languages.
Regex-Pattern-Array
Das Regex-Pattern-Array ist ein eine Liste von mehreren Regex-Pattern. Diese Liste muss in der JSON Syntax eingetragen werden.
Beispiel mehrere BedingungenThe regex pattern array is a list of several regex patterns. This list must be entered in the JSON syntax.
Example multiple conditions:
Code Block | ||
---|---|---|
| ||
[ ".{8,32}", "[A-Z]", "[a-z]", "[0-9]" ] |
...
Code Block | ||
---|---|---|
| ||
[ ".{8,32}" ] |
Validierungstext
...
Validation text
For each regex pattern array a validation text can be defined, which is displayed to the user if one of the patterns does not apply.
Default-
...
Wird einem Zielsystem keine Passwortrichtlinie hinterlegt, so gilt die Default-Richtlinie, welche folgende Bedingungen definiert hat:
...
Mindestens ein Grossbuchstabe
...
Mindestens ein Kleinbuchstabe
...
Mindestens eine Zahl
...
Guideline
If no password policy is assigned to a target system, the default policy applies, which has the following conditions defined:
At least one capital letter
At least one lowercase letter
Length between 8 and 32 characters
Regex | Name-Key | Text |
---|---|---|
[ "[A-Z]" ] | Global.Validation.Password.Uppercase | Bitte geben Sie mindestens einen Grossbuchstaben einPlease enter at least one capital letter |
[ "[a-z]" ] | Global.Validation.Password.Lowercase | Bitte geben Sie mindestens einen Kleinbuchstaben einPlease enter at least one lowercase letter |
[ "[0-9]" ] | Global.Validation.Password.Number | Bitte geben Sie mindestens eine Zahl einPlease enter at least one number |
[ "[^A-Za-z0-9]" ] | Global.Validation.Password.specialcharacter | Bitte geben Sie mindestens ein Sonderzeichen einPlease enter at least one special character |
[ ".{8,32}" ] | Global.Validation.Password.8To32Characters | Bitte geben Sie zwischen 8 und 32 Buchstaben einPlease enter between 8 and 32 letters |
[ ".{10}" ] | Global.Validation.Password.DoesNot10charcacter | Bitte erhöhen Sie die Passwortlänge auf Please increase the password length to min. 10 Zeichencharacters |
How-to
...
articles
Filter by label (Content by label) | ||||||
---|---|---|---|---|---|---|
|
...
Related articles
Filter by label (Content by label) | ||||||
---|---|---|---|---|---|---|
|
...