Skip to content

coolboy10121416/Kaboom.io

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

KrunkerMultihack

http://krunker.io v1.4.7

Features

  • Aimbot (hold right mouse button)
  • Snaplines esp & name esp
  • No visual recoil
  • No quick scope delay -> gives quick scope points but is not accurate as scoping at the start since it is server sided
  • No weapon swap delay
  • Perfect bunnyhop / slidejump (hold mouse button 5)
  • Anti cheat measures
  • Every day is sunny
  • Auto reload
  • Recoil control ~ new
  • Visibility check
  • Auto shoot & scope
  • Menu
  • Configurable keybindings
  • Fix auto shoot / quick scope for snipers
  • Box esp

Gameplay: https://www.youtube.com/watch?v=-UGY3wrfor0 Alt text

Came across the game this morning and quit it this evening:

Load this extension on chrome and you're good to go.

Features How does it work

The game loads a file generally called game.js. We abuse the powers of the local user to use our altered version of game.js which patches certain functions. For example we can have name esp (see players through walls) by removing a simple check during a loop to render player information:

if (!tmpObj.inView) continue;

Features Anti cheat

Their "anti script" is mainly the last few lines of the js file zip.js. Any script that is loaded with a source from jsdelivr or raw.githack.com gets flagged. This is easy to avoid if need be.

setInterval(function() {
    document.querySelectorAll("script[src*='jsdelivr'], script[src*='raw.githack.com']").length && (document.body.innerHTML = "<div style='font-size:28px;margin-top:30px;width:100%;text-align:center'>SCRIPT DETECTED</div>")
}, 1E4);

The anti script also checks if certain classes are defined under the window object:

window.chH = function(a) {
    try {
        null == window.hack && null == window.iUb && null == window.hags && null == window.aimbot && null == window.nxtrun && null == window.KrunkAimDotTK && null == window.wallHackEnabled || !a.socket || (a.send("hc"), a.socket.close())
    } catch (b) {}
};

In an attempt to avoid updates which could potentially blacklist this cheat, this extension blocks all javascript files from krunker.io. Obviously this is also trivial to bypass: for example, they could be running javascript remotely since things like Array.from(document.scripts).filter(x=>x.src&&/js\/game\.[^\.]+\.js\?build=.+/.test(x.src)).length?'checkin':'loadin' are sent to the client through websockets - not necessarily for anti cheating.

A noobs step by step

  1. Clone/download this repository and extract it into a folder.
  2. Visit chrome://extensions (via omnibox or menu -> Tools -> Extensions).
  3. Enable Developer mode by ticking the checkbox in the upper-right corner.
  4. Click on the "Load unpacked extension..." button.
  5. Select the extracted directory.
  6. Now play krunker.io and you should notice a difference.

About

Krunker io cheat

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • JavaScript 100.0%