首页 > 其他 > 详细

startUml 破解

时间:2016-07-21 21:32:28      阅读:180      评论:0      收藏:0      [点我收藏+]

1、打开安装文件LicenseManagerDomain.js文件

2、修改validate函数

function validate(PK, name, product, licenseKey) {
 var pk, decrypted;
        // edit by 0xcb
        return {
            name: "0xcb",
            product: "StarUML",
            licenseType: "vip",
            quantity: "mergades.com",
            licenseKey: "later equals never!"
        };

        try {
            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;
        }
    }

打开starUML   help>enter license

Name:0xcb

licenseKey:later equals never!

startUml 破解

原文:http://www.cnblogs.com/austinspark-jessylu/p/5693028.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!