2017-06-19 03:36:55 +02:00
|
|
|
From ffaa3a076e512e3337083f21a68de448e3241d49 Mon Sep 17 00:00:00 2001
|
2016-11-13 06:29:32 +01:00
|
|
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
|
|
|
Date: Sat, 12 Nov 2016 23:25:22 -0600
|
|
|
|
Subject: [PATCH] Filter bad data from ArmorStand and SpawnEgg items
|
|
|
|
|
|
|
|
|
2016-11-14 02:36:23 +01:00
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2017-06-19 03:36:55 +02:00
|
|
|
index 70b498c7..a80d8b2a 100644
|
2016-11-14 02:36:23 +01:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2017-05-14 20:05:01 +02:00
|
|
|
@@ -3,6 +3,7 @@ package com.destroystokyo.paper;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import net.minecraft.server.MinecraftServer;
|
|
|
|
+import org.bukkit.Bukkit;
|
|
|
|
import org.bukkit.configuration.file.YamlConfiguration;
|
|
|
|
import org.spigotmc.SpigotWorldConfig;
|
|
|
|
|
|
|
|
@@ -386,4 +387,12 @@ public class PaperWorldConfig {
|
2016-11-14 02:36:23 +01:00
|
|
|
private void removeCorruptTEs() {
|
|
|
|
removeCorruptTEs = getBoolean("remove-corrupt-tile-entities", false);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public boolean filterNBTFromSpawnEgg = true;
|
|
|
|
+ private void fitlerNBTFromSpawnEgg() {
|
|
|
|
+ filterNBTFromSpawnEgg = getBoolean("filter-nbt-data-from-spawn-eggs-and-related", true);
|
|
|
|
+ if (!filterNBTFromSpawnEgg) {
|
|
|
|
+ Bukkit.getLogger().warning("Spawn Egg and Armor Stand NBT filtering disabled, this is a potential security risk");
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityFallingBlock.java b/src/main/java/net/minecraft/server/EntityFallingBlock.java
|
2017-06-19 03:36:55 +02:00
|
|
|
index 328ee251..c8a692aa 100644
|
2016-11-14 02:36:23 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityFallingBlock.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityFallingBlock.java
|
2017-05-14 20:05:01 +02:00
|
|
|
@@ -271,6 +271,14 @@ public class EntityFallingBlock extends Entity {
|
2016-11-14 02:36:23 +01:00
|
|
|
this.block = Block.getById(nbttagcompound.getByte("Tile") & 255).fromLegacyData(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start - Block FallingBlocks with Command Blocks
|
2016-11-14 03:20:14 +01:00
|
|
|
+ // Check mappings on update - dc = "repeating_command_block" - dd = "chain_command_block"
|
|
|
|
+ final Block b = this.block.getBlock();
|
|
|
|
+ if (this.world.paperConfig.filterNBTFromSpawnEgg && (b == Blocks.COMMAND_BLOCK || b == Blocks.dc || b == Blocks.dd)) {
|
2016-11-14 02:36:23 +01:00
|
|
|
+ this.block = Blocks.STONE.getBlockData();
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
this.ticksLived = nbttagcompound.getInt("Time");
|
|
|
|
Block block = this.block.getBlock();
|
|
|
|
|
2016-11-13 06:29:32 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/ItemMonsterEgg.java b/src/main/java/net/minecraft/server/ItemMonsterEgg.java
|
2017-06-19 03:36:55 +02:00
|
|
|
index 20070ec9..643bc41c 100644
|
2016-11-13 06:29:32 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/ItemMonsterEgg.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/ItemMonsterEgg.java
|
2016-12-20 23:34:27 +01:00
|
|
|
@@ -102,7 +102,14 @@ public class ItemMonsterEgg extends Item {
|
2017-05-14 20:05:01 +02:00
|
|
|
NBTTagCompound nbttagcompound1 = entity.save(new NBTTagCompound());
|
2016-11-13 06:29:32 +01:00
|
|
|
UUID uuid = entity.getUniqueID();
|
2016-11-14 02:36:23 +01:00
|
|
|
|
2016-11-13 06:29:32 +01:00
|
|
|
- nbttagcompound1.a(nbttagcompound.getCompound("EntityTag"));
|
|
|
|
+ // Paper start - Filter out position and motion information
|
|
|
|
+ final NBTTagCompound entityTag = nbttagcompound.getCompound("EntityTag");
|
2016-11-14 02:36:23 +01:00
|
|
|
+ if (world.paperConfig.filterNBTFromSpawnEgg) {
|
|
|
|
+ entityTag.remove("Pos");
|
|
|
|
+ entityTag.remove("Motion");
|
|
|
|
+ }
|
2016-11-13 06:29:32 +01:00
|
|
|
+ nbttagcompound1.a(entityTag);
|
|
|
|
+ // Paper end
|
|
|
|
entity.a(uuid);
|
|
|
|
entity.f(nbttagcompound1);
|
|
|
|
}
|
|
|
|
--
|
2017-06-19 03:36:55 +02:00
|
|
|
2.13.1.windows.2
|
2016-11-13 06:29:32 +01:00
|
|
|
|