Git Product home page Git Product logo

krunkerbypass's Introduction

Can't be bothered to maintain several repos. Just check wheelchair for a bypass.

KrunkerBypass

Anti-cheat bypasses for krunker

Featuring only the bare minimum esps (this is not a cheat flex repo but an anti cheat bypass repo). Use Tamper monkey to load any

Method 1.8.8
ArgumentsHook
ArrayHook
DecoderHook havent tried
FunctionHook

1.8.3 - they begun hooking String.prototype.replace to detect modifications

ArrayHook

The game logic uses arrays to hold entities. We hook the prototype Array.prototype.push to access player list.

DecoderHook

The game must decode the game logic at some point. We modify Krunkers decode function by using MutationObservers to access the resulting plain text code.

FunctionHook

Krunker must dynamically execute code since they first decrypt/decode the logic. They can do this using one of the following methods (or more..):

  • eval
  • setTimeout
  • new Function()
  • document.write()
  • document.createElement('script'); // ..

Specifically, they are using new Function(). So we can hook this to modify the script directly.

Worth noting that they have also placed some checks to see if Function has been modified: This can easily be bypassed by fixing the .toString member of the overwritten class/function.

ArgumentsHook

With a bit of magic we can hook any native function and access the chain of callers along with their respective arguments of said function.

tl;dr we can access almost all variables and functions in the game logic if we wanted to.

krunkerbypass's People

Contributors

fengjixuchui avatar hrt avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.