mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-22 23:10:52 +01:00
Merge branch 'fix-pet-exploit' into 'dev'
Fix pet name exploit. See merge request morningstar/Arcturus-Community!127
This commit is contained in:
commit
034e3d0767
@ -5,10 +5,7 @@ import com.eu.habbo.habbohotel.catalog.CatalogItem;
|
||||
import com.eu.habbo.habbohotel.catalog.CatalogManager;
|
||||
import com.eu.habbo.habbohotel.catalog.CatalogPage;
|
||||
import com.eu.habbo.habbohotel.catalog.ClubOffer;
|
||||
import com.eu.habbo.habbohotel.catalog.layouts.ClubBuyLayout;
|
||||
import com.eu.habbo.habbohotel.catalog.layouts.RecentPurchasesLayout;
|
||||
import com.eu.habbo.habbohotel.catalog.layouts.RoomBundleLayout;
|
||||
import com.eu.habbo.habbohotel.catalog.layouts.VipBuyLayout;
|
||||
import com.eu.habbo.habbohotel.catalog.layouts.*;
|
||||
import com.eu.habbo.habbohotel.items.FurnitureType;
|
||||
import com.eu.habbo.habbohotel.users.HabboBadge;
|
||||
import com.eu.habbo.habbohotel.users.HabboInventory;
|
||||
@ -24,6 +21,10 @@ import com.eu.habbo.messages.outgoing.users.*;
|
||||
import com.eu.habbo.threading.runnables.ShutdownEmulator;
|
||||
import gnu.trove.map.hash.THashMap;
|
||||
import gnu.trove.procedure.TObjectProcedure;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
|
||||
import static com.eu.habbo.messages.incoming.catalog.CheckPetNameEvent.PET_NAME_LENGTH_MAXIMUM;
|
||||
import static com.eu.habbo.messages.incoming.catalog.CheckPetNameEvent.PET_NAME_LENGTH_MINIMUM;
|
||||
|
||||
public class CatalogBuyItemEvent extends MessageHandler {
|
||||
@Override
|
||||
@ -188,8 +189,15 @@ public class CatalogBuyItemEvent extends MessageHandler {
|
||||
|
||||
if (page instanceof RecentPurchasesLayout)
|
||||
item = this.client.getHabbo().getHabboStats().getRecentPurchases().get(itemId);
|
||||
|
||||
else
|
||||
item = page.getCatalogItem(itemId);
|
||||
// temp patch, can a dev with better knowledge than me look into this asap pls.
|
||||
if (page instanceof PetsLayout) { // checks it's the petlayout
|
||||
String[] check = extraData.split("\n"); // splits the extradata
|
||||
if ((check.length != 3) || (check[0].length() < PET_NAME_LENGTH_MINIMUM) || (check[0].length() > PET_NAME_LENGTH_MAXIMUM) || (!StringUtils.isAlphanumeric(check[0])))// checks if there's 3 parts (always is with pets, if not it fucks them off)
|
||||
return; // if it does it fucks off.
|
||||
}
|
||||
|
||||
Emulator.getGameEnvironment().getCatalogManager().purchaseItem(page, item, this.client.getHabbo(), count, extraData, false);
|
||||
|
||||
|
@ -6,17 +6,17 @@ import com.eu.habbo.messages.outgoing.catalog.PetNameErrorComposer;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
|
||||
public class CheckPetNameEvent extends MessageHandler {
|
||||
public static int PET_NAME_LENGTH_MINIMUM = Emulator.getConfig().getInt("hotel.pets.name.length.min");
|
||||
public static int PET_NAME_LENGTH_MAXIMUM = Emulator.getConfig().getInt("hotel.pets.name.length.max");
|
||||
|
||||
@Override
|
||||
public void handle() throws Exception {
|
||||
String petName = this.packet.readString();
|
||||
|
||||
int minLength = Emulator.getConfig().getInt("hotel.pets.name.length.min");
|
||||
int maxLength = Emulator.getConfig().getInt("hotel.pets.name.length.max");
|
||||
|
||||
if (petName.length() < minLength) {
|
||||
this.client.sendResponse(new PetNameErrorComposer(PetNameErrorComposer.NAME_TO_SHORT, minLength + ""));
|
||||
} else if (petName.length() > maxLength) {
|
||||
this.client.sendResponse(new PetNameErrorComposer(PetNameErrorComposer.NAME_TO_LONG, maxLength + ""));
|
||||
if (petName.length() < PET_NAME_LENGTH_MINIMUM) {
|
||||
this.client.sendResponse(new PetNameErrorComposer(PetNameErrorComposer.NAME_TO_SHORT, PET_NAME_LENGTH_MINIMUM + ""));
|
||||
} else if (petName.length() > PET_NAME_LENGTH_MAXIMUM) {
|
||||
this.client.sendResponse(new PetNameErrorComposer(PetNameErrorComposer.NAME_TO_LONG, PET_NAME_LENGTH_MAXIMUM + ""));
|
||||
} else if (!StringUtils.isAlphanumeric(petName)) {
|
||||
this.client.sendResponse(new PetNameErrorComposer(PetNameErrorComposer.FORBIDDEN_CHAR, petName));
|
||||
} else {
|
||||
|
@ -26,6 +26,7 @@ import com.eu.habbo.habbohotel.wired.highscores.WiredHighscoreManager;
|
||||
import com.eu.habbo.messages.PacketManager;
|
||||
import com.eu.habbo.messages.incoming.camera.CameraPublishToWebEvent;
|
||||
import com.eu.habbo.messages.incoming.camera.CameraPurchaseEvent;
|
||||
import com.eu.habbo.messages.incoming.catalog.CheckPetNameEvent;
|
||||
import com.eu.habbo.messages.incoming.floorplaneditor.FloorPlanEditorSaveEvent;
|
||||
import com.eu.habbo.messages.incoming.hotelview.HotelViewRequestLTDAvailabilityEvent;
|
||||
import com.eu.habbo.messages.incoming.rooms.promotions.BuyRoomPromotionEvent;
|
||||
@ -131,6 +132,9 @@ public class PluginManager {
|
||||
AchievementManager.TALENTTRACK_ENABLED = Emulator.getConfig().getBoolean("hotel.talenttrack.enabled");
|
||||
InteractionRoller.NO_RULES = Emulator.getConfig().getBoolean("hotel.room.rollers.norules");
|
||||
RoomManager.SHOW_PUBLIC_IN_POPULAR_TAB = Emulator.getConfig().getBoolean("hotel.navigator.populartab.publics");
|
||||
CheckPetNameEvent.PET_NAME_LENGTH_MINIMUM = Emulator.getConfig().getInt("hotel.pets.name.length.min");
|
||||
CheckPetNameEvent.PET_NAME_LENGTH_MAXIMUM = Emulator.getConfig().getInt("hotel.pets.name.length.max");
|
||||
|
||||
|
||||
ChangeNameCheckUsernameEvent.VALID_CHARACTERS = Emulator.getConfig().getValue("allowed.username.characters", "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890_-=!?@:,.");
|
||||
CameraPublishToWebEvent.CAMERA_PUBLISH_POINTS = Emulator.getConfig().getInt("camera.price.points.publish", 5);
|
||||
|
Loading…
Reference in New Issue
Block a user