Skip to content

Commit 94f6811

Browse files
committed
KickForensics
1 parent a8b99b2 commit 94f6811

File tree

5 files changed

+835
-20
lines changed

5 files changed

+835
-20
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -661,6 +661,11 @@ This hack is still undergoing development and has only been tested in the end. A
661661
- Handles full inventory with optional QuickShulker support, with stop/quit behaviour if needed.
662662
- Saves progress per server (completed targets, logs, and resume position) so runs can continue later.
663663

664+
### KickForensics
665+
666+
- Captures a short window of packets and player state on disconnect and saves a report to `kick-forensics.log`.
667+
- Great for understanding anti-cheats and player states.
668+
664669
## What's changed or improved in this fork?
665670

666671
### ChestESP

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

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -146,12 +146,14 @@ 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 KillauraLegitHack killauraLegitHack = new KillauraLegitHack();
153-
public final KillauraHack killauraHack = new KillauraHack();
154-
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 =
153+
new KickForensicsHack();
154+
public final KillauraLegitHack killauraLegitHack = new KillauraLegitHack();
155+
public final KillauraHack killauraHack = new KillauraHack();
156+
public final KillPotionHack killPotionHack = new KillPotionHack();
155157
public final LiquidsHack liquidsHack = new LiquidsHack();
156158
public final LsdHack lsdHack = new LsdHack();
157159
public final MaceDmgHack maceDmgHack = new MaceDmgHack();

0 commit comments

Comments
 (0)