From 803653ee0d9f841cf56a0ac73114671a6f308c74 Mon Sep 17 00:00:00 2001 From: Gabriele C Date: Sat, 3 Sep 2016 15:40:47 +0200 Subject: [PATCH] Add default DeathBot password as unsafe --- .../fr/xephi/authme/settings/properties/SecuritySettings.java | 2 +- src/main/resources/config.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/fr/xephi/authme/settings/properties/SecuritySettings.java b/src/main/java/fr/xephi/authme/settings/properties/SecuritySettings.java index 2134a312..6454d37f 100644 --- a/src/main/java/fr/xephi/authme/settings/properties/SecuritySettings.java +++ b/src/main/java/fr/xephi/authme/settings/properties/SecuritySettings.java @@ -89,7 +89,7 @@ public class SecuritySettings implements SettingsClass { "- '123456'", "- 'password'"}) public static final Property> UNSAFE_PASSWORDS = - newLowercaseListProperty("settings.security.unsafePasswords", "123456", "password", "qwerty", "12345", "54321"); + newLowercaseListProperty("settings.security.unsafePasswords", "123456", "password", "qwerty", "12345", "54321", "123456789"); @Comment("Tempban a user's IP address if they enter the wrong password too many times") public static final Property TEMPBAN_ON_MAX_LOGINS = diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index bfa09d74..07f3c3c7 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -206,6 +206,7 @@ settings: - 'qwerty' - '12345' - '54321' + - '123456789' registration: # enable registration on the server? enabled: true