美文网首页
某37网游练手,Js逆向:★

某37网游练手,Js逆向:★

作者: 八月欢喜 | 来源:发表于2021-11-09 17:56 被阅读0次

    前言

    1. 可以关注我哟,一起学习,主页有更多练习例子
    2. 如果哪个练习我没有写清楚,可以留言我会补充
    3. 如果有加密的网站可以留言发给我,一起学习共享学习路程
      4.如侵权,联系我,删
      5.找不到啥新的网站了,大网站自己有研究不透
      最近一直懒得写,没什么有意思的网站了,迷茫,摸鱼好几天,堕落

    网址信息

    网址:aHR0cHM6Ly93d3cuMzcuY29tLw==
    加密端口:aHR0cHM6Ly9teS4zNy5jb20vYXBpL2xvZ2luLnBocA==
    逆向参数:password: SlVEOThrcjgzNDNjaUYxOTQzNDM0eVM=

    寻找加密的password

    image.png

    两个地方,然后就都打上断点


    image.png

    F是我们的值,然后td进行加密,进入td中

    image.png

    有一点加盐,然后又加密了一次,加密代码

    var ch = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
    function __rsa(str) {
        var out, i, len;
        var c1, c2, c3;
        len = str.length;
        i = 0;
        out = "";
        while (i < len) {
            c1 = str.charCodeAt(i++) & 0xff;
            if (i == len) {
                out += ch.charAt(c1 >> 2);
                out += ch.charAt((c1 & 0x3) << 4);
                out += "==";
                break
            }
            c2 = str.charCodeAt(i++);
            if (i == len) {
                out += ch.charAt(c1 >> 2);
                out += ch.charAt(((c1 & 0x3) << 4) | ((c2 & 0xF0) >> 4));
                out += ch.charAt((c2 & 0xF) << 2);
                out += "=";
                break
            }
            c3 = str.charCodeAt(i++);
            out += ch.charAt(c1 >> 2);
            out += ch.charAt(((c1 & 0x3) << 4) | ((c2 & 0xF0) >> 4));
            out += ch.charAt(((c2 & 0xF) << 2) | ((c3 & 0xC0) >> 6));
            out += ch.charAt(c3 & 0x3F)
        }
        return out
    }
    function td(a) {
        var maxPos = ch.length - 2
          , w = [];
        for (i = 0; i < 15; i++) {
            w.push(ch.charAt(Math.floor(Math.random() * maxPos)));
            if (i === 7) {
                w.push(a.substr(0, 3))
            }
            if (i === 12) {
                w.push(a.substr(3))
            }
        }
        return __rsa(w.join(""))
    }
    
    
    

    完结撒花,就这么简单

    相关文章

      网友评论

          本文标题:某37网游练手,Js逆向:★

          本文链接:https://www.haomeiwen.com/subject/egqvzltx.html