美文网首页
StarUML破解

StarUML破解

作者: MrChenyz | 来源:发表于2018-03-21 13:11 被阅读0次

    修改validate方法:
    function validate(PK, name, product, licenseKey) {
    var pk, decrypted;
    try {
    return {
    name: "MrChen", //可以改成你自己的名字,这就是登录账号,最好是英文
    product: "StarUML",
    licenseType: "vip",
    quantity: "https://my.oschina.net/chenyazhou/blog",
    licenseKey: "123456" //这就是密码,自己随便改改就好
    };
    pk = new NodeRSA(PK);
    decrypted = pk.decrypt(licenseKey, 'utf8');
    } catch (err) {
    return false;
    }
    var terms = decrypted.trim().split("\n");
    if (terms[0] === name && terms[1] === product) {
    return {
    name: name,
    product: product,
    licenseType: terms[2],
    quantity: terms[3],
    licenseKey: licenseKey
    };
    } else {
    return false;
    }
    }

    启动软件 Help-->Enter License 输入上面输入的用户名密码。

    相关文章

      网友评论

          本文标题:StarUML破解

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