Skip to content

Commit 78b6b00

Browse files
committed
CommandScanner
1 parent 0f3f504 commit 78b6b00

4 files changed

Lines changed: 658 additions & 1 deletion

File tree

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -873,6 +873,31 @@ Purpose: helps you avoid and debug anticheat flags by cleaning risky movement pa
873873
### NoPlayerChat
874874
- Allows you to disable or filter game chats
875875

876+
### CommandScanner
877+
- Enumerate server side commands that are typically unavailable to the player by sending specialised packets
878+
- Optionally elicit only 'unknown' commands. Scans via packets then compares via client commands, whichever isn't available to the user is shown.
879+
- Your command list probing won't appear in server side logs
880+
- Can also run each command, run specific commands via packets or enumerate via client side commands
881+
882+
#### Example Output
883+
```
884+
[STDOUT]: Unknown or incomplete command. See below for error
885+
[STDOUT]: c2me<--[HERE]
886+
[STDOUT]: Unknown or incomplete command. See below for error
887+
[STDOUT]: panda-anti-exploit<--[HERE]
888+
[STDOUT]: Unknown or incomplete command. See below for error
889+
[STDOUT]: test<--[HERE]
890+
[STDOUT]: Unknown or incomplete command. See below for error
891+
[STDOUT]: version<--[HERE]
892+
[STDOUT]: [Wurst] CommandScanner started.
893+
[STDOUT]: [Wurst] Enabled: CommandScanner
894+
[STDOUT]: [Wurst] Found 20 non-vanilla commands:
895+
[STDOUT]: [Wurst] /c2me, /dialog, /discord, /dmcc, /fetchprofile, /melius-commands, /panda-anti-exploit, /plstyle
896+
[STDOUT]: [Wurst] /rotate, /spark, /stopwatch, /styledchat, /styledplayerlist, /suicide, /tellform, /test
897+
[STDOUT]: [Wurst] /version, /voicechat, /vote, /waypoint
898+
[STDOUT]: [Wurst] Disabled: CommandScanner
899+
```
900+
876901
## What's changed or improved in this fork?
877902

878903
### ChestESP

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ public final class HackList implements UpdateListener
5252
public final AutoArmorHack autoArmorHack = new AutoArmorHack();
5353
public final AutoBuildHack autoBuildHack = new AutoBuildHack();
5454
public final AutoChatHack autoChatHack = new AutoChatHack();
55+
public final CommandScannerHack commandScannerHack =
56+
new CommandScannerHack();
5557
public final AutoCompleteHack autoCompleteHack = new AutoCompleteHack();
5658
public final AutoDisenchantHack autoDisenchantHack =
5759
new AutoDisenchantHack();

0 commit comments

Comments
 (0)