Enhanced Password Regex
We are now allowing every ASCII character except for space (0x20 - 32). Those are the characters allowed in passwords.
This commit is contained in:
parent
e36337c066
commit
a5952de237
@ -165,7 +165,7 @@ settings:
|
|||||||
# AuthMe will NEVER teleport players !
|
# AuthMe will NEVER teleport players !
|
||||||
noTeleport: false
|
noTeleport: false
|
||||||
# Regex sintax for allowed Chars in passwords.
|
# Regex sintax for allowed Chars in passwords.
|
||||||
allowedPasswordCharacters: '[a-zA-Z0-9_?!@+&-]*'
|
allowedPasswordCharacters: '[\x21-\x7E]*'
|
||||||
GameMode:
|
GameMode:
|
||||||
# ForceSurvivalMode to player when join ?
|
# ForceSurvivalMode to player when join ?
|
||||||
ForceSurvivalMode: false
|
ForceSurvivalMode: false
|
||||||
@ -422,4 +422,4 @@ Protection:
|
|||||||
antiBotDuration: 10
|
antiBotDuration: 10
|
||||||
VeryGames:
|
VeryGames:
|
||||||
# These features are only available on VeryGames Server Provider
|
# These features are only available on VeryGames Server Provider
|
||||||
enableIpCheck: false
|
enableIpCheck: false
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user