E-Code

Evades Coder

Bu script direkt olarak kurulamaz. Başka scriptler için bir kütüphanedir ve meta yönergeleri içerir // @require https://update.greasyfork.org/scripts/438621/1022930/E-Code.js

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @license      MIT
// @name         E-Code
// @version      1.1
// @description  Evades Coder
// @author       0vC4
// @match        http://*/*
// @match        https://*/*
// @grant        none
// @run-at       document-start
// @namespace    https://greasyfork.org/users/670183
// ==/UserScript==

const Coder = await (async () => {
    const getFile = async url => await fetch(url).then(d=>d.text());
    const use = code => new Function('return '+code)();

    eval(await getFile('https://cdn.jsdelivr.net/gh/dcodeIO/[email protected]/dist/light/protobuf.min.js'));
    const appUrl = await getFile(location.href).then(d=>d.match(/app\.[a-z0-9]*\.js/)[0]);
    const mainJS = await getFile(location.href+'/'+appUrl);
    const scheme = use(mainJS.match(/(?<=\.addJSON\()\{(.|\n)+?\}(?=\);)/)[0]);

    const coder = new protobuf.Root();
    coder.addJSON(scheme);

    return {
        protobuf: coder,
        decode: {
            server(packet) {
                return coder.FramePayload.toObject(coder.FramePayload.decode(new Uint8Array(packet)));
            },
            client(packet) {
                return coder.ClientPayload.toObject(coder.ClientPayload.decode(new Uint8Array(packet)));
            }
        },
        encode: {
            server(object) {
                return coder.FramePayload.encode(object).finish();
            },
            client(object) {
                return coder.ClientPayload.encode(object).finish();
            }
        }
    };
})();