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-22 19:31:02 +02:00
|
|
|
index fadda21fe9e28529b48945ad075173783539c5d4..97d50c49178d0bbd736c652a4676a37f0dcb8a3b 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-22 17:24:59 +02:00
|
|
|
@@ -3298,6 +3298,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
|
|
|
}
|
|
|
|
|