From f55b182d8eab602c3f982db1ff670d1c116be24b Mon Sep 17 00:00:00 2001 From: simoleo89 Date: Sat, 6 Jun 2026 02:25:15 +0200 Subject: [PATCH] feat(furnieditor): make item_name immutable (remove from DB update whitelist) --- .../habbo/messages/incoming/furnieditor/FurniEditorHelper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Emulator/src/main/java/com/eu/habbo/messages/incoming/furnieditor/FurniEditorHelper.java b/Emulator/src/main/java/com/eu/habbo/messages/incoming/furnieditor/FurniEditorHelper.java index 0de0e1b6..cd7f7a82 100644 --- a/Emulator/src/main/java/com/eu/habbo/messages/incoming/furnieditor/FurniEditorHelper.java +++ b/Emulator/src/main/java/com/eu/habbo/messages/incoming/furnieditor/FurniEditorHelper.java @@ -82,7 +82,7 @@ public class FurniEditorHelper { * Prevents SQL injection via arbitrary column names. */ public static final java.util.Set ALLOWED_UPDATE_FIELDS = java.util.Set.of( - "item_name", "public_name", "sprite_id", "type", "width", "length", + "public_name", "sprite_id", "type", "width", "length", "stack_height", "allow_stack", "allow_walk", "allow_sit", "allow_lay", "allow_gift", "allow_trade", "allow_recycle", "allow_marketplace_sell", "allow_inventory_stack", "interaction_type", "interaction_modes_count",