2022-01-01 14:48:17 +01:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Spottedleaf <Spottedleaf@users.noreply.github.com>
|
|
|
|
Date: Sat, 1 Jan 2022 05:19:37 -0800
|
|
|
|
Subject: [PATCH] Validate usernames
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/network/ServerLoginPacketListenerImpl.java b/src/main/java/net/minecraft/server/network/ServerLoginPacketListenerImpl.java
|
2022-08-08 17:25:41 +02:00
|
|
|
index acd581d14e0ef1fe5a6545ee67be00deff589879..553eb8e437b07376dbfc54b0018bcc3ff93e4461 100644
|
2022-01-01 14:48:17 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/network/ServerLoginPacketListenerImpl.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/network/ServerLoginPacketListenerImpl.java
|
2022-08-08 17:25:41 +02:00
|
|
|
@@ -66,6 +66,7 @@ public class ServerLoginPacketListenerImpl implements TickablePacketListener, Se
|
|
|
|
@Nullable
|
2022-07-27 23:32:15 +02:00
|
|
|
private ProfilePublicKey.Data profilePublicKeyData;
|
2022-01-18 04:52:47 +01:00
|
|
|
public String hostname = ""; // CraftBukkit - add field
|
|
|
|
+ public boolean iKnowThisMayNotBeTheBestIdeaButPleaseDisableUsernameValidation = false; // Paper - username validation overriding
|
|
|
|
|
|
|
|
public ServerLoginPacketListenerImpl(MinecraftServer server, Connection connection) {
|
|
|
|
this.state = ServerLoginPacketListenerImpl.State.HELLO;
|
2022-08-08 17:25:41 +02:00
|
|
|
@@ -255,10 +256,38 @@ public class ServerLoginPacketListenerImpl implements TickablePacketListener, Se
|
2022-06-08 14:33:46 +02:00
|
|
|
}
|
2022-01-01 14:48:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start - validate usernames
|
|
|
|
+ public static boolean validateUsername(String in) {
|
|
|
|
+ if (in == null || in.isEmpty() || in.length() > 16) {
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ for (int i = 0, len = in.length(); i < len; ++i) {
|
|
|
|
+ char c = in.charAt(i);
|
|
|
|
+
|
2022-01-01 20:50:44 +01:00
|
|
|
+ if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || (c == '_' || c == '.')) {
|
2022-01-01 14:48:17 +01:00
|
|
|
+ continue;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return true;
|
|
|
|
+ }
|
|
|
|
+ // Paper end - validate usernames
|
|
|
|
+
|
|
|
|
@Override
|
|
|
|
public void handleHello(ServerboundHelloPacket packet) {
|
|
|
|
Validate.validState(this.state == ServerLoginPacketListenerImpl.State.HELLO, "Unexpected hello packet", new Object[0]);
|
2022-06-08 14:33:46 +02:00
|
|
|
Validate.validState(ServerLoginPacketListenerImpl.isValidUsername(packet.name()), "Invalid characters in username", new Object[0]);
|
2022-01-01 14:48:17 +01:00
|
|
|
+ // Paper start - validate usernames
|
2022-06-09 10:51:45 +02:00
|
|
|
+ if (io.papermc.paper.configuration.GlobalConfiguration.get().proxies.isProxyOnlineMode() && io.papermc.paper.configuration.GlobalConfiguration.get().unsupportedSettings.performUsernameValidation) {
|
2022-06-08 14:33:46 +02:00
|
|
|
+ if (!this.iKnowThisMayNotBeTheBestIdeaButPleaseDisableUsernameValidation && !validateUsername(packet.name())) {
|
2022-01-01 14:48:17 +01:00
|
|
|
+ ServerLoginPacketListenerImpl.this.disconnect("Failed to verify username!");
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ // Paper end - validate usernames
|
2022-07-27 23:32:15 +02:00
|
|
|
this.profilePublicKeyData = (ProfilePublicKey.Data) packet.publicKey().orElse(null); // CraftBukkit - decompile error
|
|
|
|
GameProfile gameprofile = this.server.getSingleplayerProfile();
|
2022-06-08 14:33:46 +02:00
|
|
|
|
2022-01-01 14:48:17 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/players/PlayerList.java b/src/main/java/net/minecraft/server/players/PlayerList.java
|
2022-08-06 00:58:34 +02:00
|
|
|
index 8f89c694e08db71a8e1509a102ad96defe788828..dd06ed2a72df27a6f2bd4014ec9055729e7f2773 100644
|
2022-01-01 14:48:17 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/players/PlayerList.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/players/PlayerList.java
|
2022-07-28 00:10:27 +02:00
|
|
|
@@ -708,7 +708,7 @@ public abstract class PlayerList {
|
2022-01-01 14:48:17 +01:00
|
|
|
|
|
|
|
for (int i = 0; i < this.players.size(); ++i) {
|
|
|
|
entityplayer = (ServerPlayer) this.players.get(i);
|
|
|
|
- if (entityplayer.getUUID().equals(uuid)) {
|
2022-06-09 10:51:45 +02:00
|
|
|
+ if (entityplayer.getUUID().equals(uuid) || (io.papermc.paper.configuration.GlobalConfiguration.get().proxies.isProxyOnlineMode() && entityplayer.getGameProfile().getName().equalsIgnoreCase(gameprofile.getName()))) { // Paper - validate usernames
|
2022-01-01 14:48:17 +01:00
|
|
|
list.add(entityplayer);
|
|
|
|
}
|
|
|
|
}
|