aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0391-Do-not-accept-invalid-client-settings.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0391-Do-not-accept-invalid-client-settings.patch')
-rw-r--r--patches/server/0391-Do-not-accept-invalid-client-settings.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/patches/server/0391-Do-not-accept-invalid-client-settings.patch b/patches/server/0391-Do-not-accept-invalid-client-settings.patch
new file mode 100644
index 0000000000..ad0a7a55ea
--- /dev/null
+++ b/patches/server/0391-Do-not-accept-invalid-client-settings.patch
@@ -0,0 +1,24 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Spottedleaf <[email protected]>
+Date: Sat, 7 May 2022 14:58:53 -0700
+Subject: [PATCH] Do not accept invalid client settings
+
+
+diff --git a/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java b/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
+index 324229e960c6fdf3de2a8d5c0c5516e262985efc..ec5e4e6eb1de7e134e30247a0c43e73af7263e47 100644
+--- a/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
++++ b/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
+@@ -3240,6 +3240,13 @@ public class ServerGamePacketListenerImpl extends ServerCommonPacketListenerImpl
+ @Override
+ public void handleClientInformation(ServerboundClientInformationPacket packet) {
+ PacketUtils.ensureRunningOnSameThread(packet, this, this.player.serverLevel());
++ // Paper start - do not accept invalid information
++ if (packet.information().viewDistance() < 0) {
++ LOGGER.warn("Disconnecting " + this.player.getScoreboardName() + " for invalid view distance: " + packet.information().viewDistance());
++ this.disconnect("Invalid client settings", org.bukkit.event.player.PlayerKickEvent.Cause.ILLEGAL_ACTION);
++ return;
++ }
++ // Paper end - do not accept invalid information
+ this.player.updateOptions(packet.information());
+ this.connection.channel.attr(io.papermc.paper.adventure.PaperAdventure.LOCALE_ATTRIBUTE).set(net.kyori.adventure.translation.Translator.parseLocale(packet.information().language())); // Paper
+ }