irradiate
New member
- Joined
- Nov 12, 2021
- Messages
- 23
- Reaction score
- 5
- Points
- 0
have fun
password: masterof13fps
password: masterof13fps
Last edited by a moderator:
public static boolean wiresharkRunning() throws IOException {
final ProcessBuilder pb = new ProcessBuilder(new String[0]);
pb.command("tasklist.exe");
final Process process = pb.start();
final BufferedReader br = new BufferedReader(new InputStreamReader(process.getInputStream()));
String tasks;
while ((tasks = br.readLine()) != null) {
if (tasks.toLowerCase().contains("wireshark")) {
return true;
}
}
return false;
}
1behk23kbb2kf8o22
- found in auth.Authentication.java
@Override
public void onCommand(final String[] args, final String command) {
if (args.length > 0) {
final float distance = Float.parseFloat(args[0]);
Minecraft.getMinecraft(); // ??
Minecraft.getMinecraft(); // ok a second time
Minecraft.getMinecraft(); // epic bypass?
Minecraft.getMinecraft().getNetHandler().addToSendQueue(new C03PacketPlayer.C04PacketPlayerPosition(this.mc.thePlayer.posX, this.mc.thePlayer.posY + distance, this.mc.thePlayer.posZ, false));
Minecraft.getMinecraft(); // this is going too far
Minecraft.getMinecraft(); // someone had trouble typing?
Minecraft.getMinecraft(); // forgot they already wrote this?
Minecraft.getMinecraft(); // hopefully this is the last one...
this.mc.thePlayer.setPosition(this.mc.thePlayer.posX, this.mc.thePlayer.posY + distance, this.mc.thePlayer.posZ);
}
}
epic bypass, where buy?Hello,
As stated by other members, it is not Eclipse ready. Therefore I changed the title of the thread accordingly.
Here are some discoveries:
The authentication AES key:You might want to remove that in case you want to analyze things.
PS: I still don't understand why people check Wireshark only though. It's not like there are many analysis tools existing.Java:public static boolean wiresharkRunning() throws IOException { final ProcessBuilder pb = new ProcessBuilder(new String[0]); pb.command("tasklist.exe"); final Process process = pb.start(); final BufferedReader br = new BufferedReader(new InputStreamReader(process.getInputStream())); String tasks; while ((tasks = br.readLine()) != null) { if (tasks.toLowerCase().contains("wireshark")) { return true; } } return false; }
1behk23kbb2kf8o22
- found inauth.Authentication.java
This seems like a top secret bypass.
Java:@Override public void onCommand(final String[] args, final String command) { if (args.length > 0) { final float distance = Float.parseFloat(args[0]); Minecraft.getMinecraft(); // ?? Minecraft.getMinecraft(); // ok a second time Minecraft.getMinecraft(); // epic bypass? Minecraft.getMinecraft().getNetHandler().addToSendQueue(new C03PacketPlayer.C04PacketPlayerPosition(this.mc.thePlayer.posX, this.mc.thePlayer.posY + distance, this.mc.thePlayer.posZ, false)); Minecraft.getMinecraft(); // this is going too far Minecraft.getMinecraft(); // someone had trouble typing? Minecraft.getMinecraft(); // forgot they already wrote this? Minecraft.getMinecraft(); // hopefully this is the last one... this.mc.thePlayer.setPosition(this.mc.thePlayer.posX, this.mc.thePlayer.posY + distance, this.mc.thePlayer.posZ); } }
Thanks and best regards
Krypton
Can you please include the net folder?have fun
password: masterof13fps