Skip to content

Commit 8e24870

Browse files
committed
PacketFirewall
1 parent 94f6811 commit 8e24870

File tree

7 files changed

+1538
-832
lines changed

7 files changed

+1538
-832
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -666,6 +666,13 @@ This hack is still undergoing development and has only been tested in the end. A
666666
- Captures a short window of packets and player state on disconnect and saves a report to `kick-forensics.log`.
667667
- Great for understanding anti-cheats and player states.
668668

669+
### PacketFirewall
670+
671+
- Validates outbound movement packets for protocol correctness (NaN/Infinity checks, pitch clamp, optional yaw wrapping).
672+
- Can optionally drop invalid packets and deduplicate movement within a tick.
673+
- Disabled by default; enable in ClickGUI > Other > Packet Firewall.
674+
- Great for understanding and potentially evading some anti-cheats.
675+
669676
## What's changed or improved in this fork?
670677

671678
### ChestESP

src/main/java/net/wurstclient/hack/HackList.java

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -146,14 +146,13 @@ public final class HackList implements UpdateListener
146146
public final net.wurstclient.hacks.itemhandler.ItemHandlerHack itemHandlerHack =
147147
new net.wurstclient.hacks.itemhandler.ItemHandlerHack();
148148
public final SignFramePTHack signFramePTHack = new SignFramePTHack();
149-
public final JesusHack jesusHack = new JesusHack();
150-
public final JetpackHack jetpackHack = new JetpackHack();
151-
public final KaboomHack kaboomHack = new KaboomHack();
152-
public final KickForensicsHack kickForensicsHack =
153-
new KickForensicsHack();
154-
public final KillauraLegitHack killauraLegitHack = new KillauraLegitHack();
155-
public final KillauraHack killauraHack = new KillauraHack();
156-
public final KillPotionHack killPotionHack = new KillPotionHack();
149+
public final JesusHack jesusHack = new JesusHack();
150+
public final JetpackHack jetpackHack = new JetpackHack();
151+
public final KaboomHack kaboomHack = new KaboomHack();
152+
public final KickForensicsHack kickForensicsHack = new KickForensicsHack();
153+
public final KillauraLegitHack killauraLegitHack = new KillauraLegitHack();
154+
public final KillauraHack killauraHack = new KillauraHack();
155+
public final KillPotionHack killPotionHack = new KillPotionHack();
157156
public final LiquidsHack liquidsHack = new LiquidsHack();
158157
public final LsdHack lsdHack = new LsdHack();
159158
public final MaceDmgHack maceDmgHack = new MaceDmgHack();

0 commit comments

Comments
 (0)