...
| Status |
|---|
| colour | Blue |
|---|
| title | Administrator |
|---|
|
| Status |
|---|
| colour | Green |
|---|
| title | StandUpdated: Jul 2026 |
|---|
|
| Status |
|---|
| colour | Grey |
|---|
| title | gilt fuer applies to Nuclos 4.2026.x |
|---|
|
| Panel |
|---|
|
Auf dieser SeiteOn this page |
In the system parameters you define the system's security policies – password strength, lockouts, IP restrictions and session timeout.
...
| Regular expression | Restrictions | Examples |
|---|
| ^.{6,12}$ | Länge Length 6–12 Zeichencharacters. | passwort, 123456 |
| ^[a-zA-Z]\w{5,11}$ | Länge Length 6–12; erstes Zeichen Buchstabe; nur Buchstaben/Zahlen/Unterstrichfirst character a letter; only letters/digits/underscore. | passwort, pa33w_r1 |
| ^(?=.*\d).{6,12}$ | Länge Length 6–12; mindestens eine Zifferat least one digit. | passwor1, Pa33worT |
| ^(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{6,12}$ | Länge Length 6–12; je 1 Groß-, Kleinbuchstabe und Zifferat least one upper-case, one lower-case letter and one digit. | Passwor1, pa33woRT |
| ^(?=[^\d_].*?\d)\w(\w|[!@#$%]){6,12} | Länge Length 6–12; Sonderzeichen erlaubt; erstes Zeichen keine Zifferspecial characters allowed; first character not a digit/_; mind. at least 1 Zifferdigit. | pa$$wort1, pa!@#$%1 |
Related pages