不得不说的是starUML真的非常好用,可惜他们的产品并不开源,国内有牛人尝试去破解,虽然不是很对,可是好用免费才是最爱,所以本文打算转载并记录一下这个破解过程,有需要的朋友可以拿去用一下。
本人亲测Linux/Mac下都可用,win还没试过估计道理也差不多
Start
- 打开对应 版本的安装包的配置文件位置
#修改前记得先备份
#Mac默认目录:/Applications/StarUML.app/Contents/www/license/node/LicenseManagerDomain.js
#linux默认目录:/opt/staruml/www/license/node/LicenseManagerDomain.js
2.修改文件
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!"
};
###############end############################
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;
}
}
3.打开starUML。help>enter license
Name:0xcb
licenseKey:later equals never!
#然后提示你注册成功!
Installation
#Linux
sudo dpkg -i StarUML-v2.7.0-64-bit.deb
网友评论