2022-05-07 23:59:20 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Spottedleaf <Spottedleaf@users.noreply.github.com>
|
|
|
|
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
|
2023-09-23 00:54:36 +02:00
|
|
|
index 173bbf2fb19114df13e3c0209488e727cd58ab30..7cdbad2d295ade402536e0dc6f447996a49ea74b 100644
|
2022-05-07 23:59:20 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
|
2023-09-23 00:54:36 +02:00
|
|
|
@@ -3312,6 +3312,13 @@ public class ServerGamePacketListenerImpl extends ServerCommonPacketListenerImpl
|
2022-05-07 23:59:20 +02:00
|
|
|
@Override
|
|
|
|
public void handleClientInformation(ServerboundClientInformationPacket packet) {
|
2023-06-08 10:47:19 +02:00
|
|
|
PacketUtils.ensureRunningOnSameThread(packet, this, this.player.serverLevel());
|
2022-05-07 23:59:20 +02:00
|
|
|
+ // Paper start - do not accept invalid information
|
2023-09-22 17:24:59 +02:00
|
|
|
+ if (packet.information().viewDistance() < 0) {
|
|
|
|
+ LOGGER.warn("Disconnecting " + this.player.getScoreboardName() + " for invalid view distance: " + packet.information().viewDistance());
|
2023-09-22 19:31:02 +02:00
|
|
|
+ this.disconnect("Invalid client settings", org.bukkit.event.player.PlayerKickEvent.Cause.ILLEGAL_ACTION);
|
2022-05-07 23:59:20 +02:00
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ // Paper end - do not accept invalid information
|
2023-09-22 17:24:59 +02:00
|
|
|
this.player.updateOptions(packet.information());
|
2022-05-07 23:59:20 +02:00
|
|
|
}
|
|
|
|
|