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:
Maxetto 2015-07-05 03:50:41 +02:00
parent e36337c066
commit a5952de237

View File

@ -165,7 +165,7 @@ settings:
# AuthMe will NEVER teleport players !
noTeleport: false
# Regex sintax for allowed Chars in passwords.
allowedPasswordCharacters: '[a-zA-Z0-9_?!@+&-]*'
allowedPasswordCharacters: '[\x21-\x7E]*'
GameMode:
# ForceSurvivalMode to player when join ?
ForceSurvivalMode: false
@ -422,4 +422,4 @@ Protection:
antiBotDuration: 10
VeryGames:
# These features are only available on VeryGames Server Provider
enableIpCheck: false
enableIpCheck: false