diff --git a/core/src/main/java/com/github/games647/fastlogin/core/AuthStorage.java b/core/src/main/java/com/github/games647/fastlogin/core/AuthStorage.java index 24415905..e9d0808c 100644 --- a/core/src/main/java/com/github/games647/fastlogin/core/AuthStorage.java +++ b/core/src/main/java/com/github/games647/fastlogin/core/AuthStorage.java @@ -68,6 +68,10 @@ public class AuthStorage { // prefer encrypted if possible config.addDataSourceProperty("sslMode", "PREFERRED"); + // adding paranoid hides hostname, username, version and so + // could be useful for hiding server details + config.addDataSourceProperty("paranoid", "true"); + // enable MySQL specific optimizations // disabled by default - will return the same prepared statement instance config.addDataSourceProperty("cachePrepStmts", true);