From a5952de23750d162e5bfe5a32877c384a3105cfb Mon Sep 17 00:00:00 2001 From: Maxetto Date: Sun, 5 Jul 2015 03:50:41 +0200 Subject: [PATCH] Enhanced Password Regex We are now allowing every ASCII character except for space (0x20 - 32). Those are the characters allowed in passwords. --- src/main/resources/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index d2147b1f4..d362a4e66 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -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 \ No newline at end of file + enableIpCheck: false