JSFiddle - React, Tailwind, and code Playground

by Sedbol

JavaScript

const charset = " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~";
function runinf(value){
    function toRadix(N,radix) {
        var HexN = "",
            Q = Math.floor(Math.abs(N)),R,strv = charset,radix = strv.length;
        while (true) {
            R = Q % radix;
            HexN = strv.charAt(R) + HexN;
            Q = (Q - R) / radix;
            if (Q == 0)
                break;
        }

            return ((N < 0) ? "-" + HexN : HexN);

    }



    let start = (new Date()) * 1,
        ok = false,
        index = 100000000000000000000;
    while(!ok){
        console.info(toRadix(index));

        let result = MD5('4333086_55818031_'+toRadix(index)+'');
        if(result=="fad7b677923c3e47537577eab8dfad3c"){
            console.info("Hack",toRadix(index));
            ok = true;
        }else{

            index++;

        }
        ///document.getElementById('set').innerText=""+start+"";
    }

    //console.info(((new Date()) * 1) - start);
}

runinf("9y4BSDVoT2esuUhNf03g23234234234")