NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Bypass Krunker IP Ban // @namespace Not JINXZ // @version 0.1 // @description try to take over the world! // @author JINXZ // @match https://*/* // @run-at document-start // @grant none // @copyright 2021, JINXZ (https://openuserjs.org/users/JINXZ) // @license MIT // @noframes // ==/UserScript== (function(base64, socket, encode, proxy) { 'use strict'; this.WebSocket = new proxy(socket, { construct(target, [url]) { console.log(url) while (url.match(/wss:\/\/ip_(.+?).krunker.io:(\d+)\/ws\?gameId=(\w+:\w+)&clientKey=(.+)/)) { console.log("Masking Your IP Address"); return new target('wss://krunker.space/c5580cf2af/ws', encode(btoa(url))) } return new target(url); } }); })(btoa, WebSocket, encodeURIComponent, Proxy);