starUML破解方法(Windows10 & MAC)

破解之路

Mac版(摘自互联网)

原文请查看引用【StarUML 版本破解(MAC版)】

1,打开对应 mac版本的安装包位置,在对应目录js文件

1
/Applications/StarUML.app/Contents/www/license/node/LicenseManagerDomain.js

2,找到文件23行,修改对应下面函数。更改为如下代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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;
}
}

我的做法是注释掉原有代码,再增加,防止出现问题。

3,打开starUML。

help>enter license

1
2
Name:0xcb
licenseKey:later

equals never! 然后提示你注册成功!

引用
UML——状态图
starUML破解方法(Windows10 & MAC)
StarUML 版本破解(MAC版)
App can’t be opened because it is from an unidentified developer


来源:http://leunggeorge.github.io/

0%