转:StarUML3.0的破解方法

发布时间:2025-01-07 09:58

转自:https://blog.csdn.net/sam_shan/article/details/80585240

最近StarUML由2.0更新到3.0。原来的破解方法,修改license验证函数的方式不能用了。安装位置都变了,已经找不到LicenseManagerDomain.js这个文件了。那该怎么办?老司机告诉大家解决办法。

StarUML是用nodejs写的。确切的说是用Electron前端框架写的。新版本中所有的starUML源代码是通过asar工具打包而成。确切的代码位置在“%LOCALAPPDATA%\Programs\StarURML\resources\app.asar” 
我们可以通过asar工具解压修改达到破解目的。具体操作如下:

1. 安装asar

cnpm install -g asar

2. 解压app.asar

asar extract app.asar app

3. 修改源代码

通过命令行将程序解压到app目录下。真正的验证license的代码在app\src\engine\license-manager.js

/** * Check license validity * * @return {Promise} */ validate () { return new Promise((resolve, reject) => { try { // Local check var file = this.findLicense() if (!file) { reject('License key not found') } else { var data = fs.readFileSync(file, 'utf8') licenseInfo = JSON.parse(data) var base = SK + licenseInfo.name + SK + licenseInfo.product + '-' + licenseInfo.licenseType + SK + licenseInfo.quantity + SK + licenseInfo.timestamp + SK var _key = crypto.createHash('sha1').update(base).digest('hex').toUpperCase() if (_key !== licenseInfo.licenseKey) { reject('Invalid license key') } else { // Server check $.post(app.config.validation_url, {licenseKey: licenseInfo.licenseKey}) .done(data => { resolve(data) }) .fail(err => { if (err && err.status === 499) { /* License key not exists */ reject(err) } else { // If server is not available, assume that license key is valid resolve(licenseInfo) } }) } } } catch (err) { reject(err) } }) }

这是个典型的javascirpt Promise。启动后会调用validate函数检查license。

checkLicenseValidity () { this.validate().then(() => { setStatus(this, true) }, () => { // 原来的代码,如果失败就会将状态设置成false // setStatus(this, false) // UnregisteredDialog.showDialog() //修改后的代码 setStatus(this, true) }) }

参照上面的代码将reject的callback原代码注释掉。换成setStatus(this, true) 这样无论你注册与否都验证成功。

4. 重新打包替换原来的app.asar

asar pack app app.asar

启动StarUML 开始工作吧

posted on 2018-07-14 14:25  Boom__Clap  阅读(4604)  评论()  编辑  收藏  举报

网址:转:StarUML3.0的破解方法 https://mxgxt.com/news/view/680369

相关内容

单挑“舍身取义”与“隐身法宠”之破解方法
男友生气冷战,破解冷战的最佳方法
猪猴不到头的破解方法,如何化解
猪猴不到头的破解方法,属猪和属猴婚姻不顺如何化解
KOL营销方法论全解
情侣吵架的化解方法
破壁书|糊/Flop:明星过气的表达方法
干货!破解写作难题的思路与方法
狗羊属相不合如何破解,这几种方法可以尝试一下
挽回 情绪(挽回破碎关系的有效方法)

随便看看