以下內(nèi)容來源于網(wǎng)絡(luò)蕊肥,僅供參考。
1、找到安裝目錄下的文件:LicenseManagerDomain.js
2宋彼、加密信息方式為:改軟件用rsa加密用戶信息,換行為用戶信息的分隔符
則用打開LicenseManagerDomain.js仙畦,復(fù)制下面的代碼并替換
function validate(PK, name, product, licenseKey)
部分相關(guān)代碼输涕。
function validate(PK, name, product, licenseKey) {
var pk, decrypted;
// edit by 0xcb
return {
name: "0xcb",
product: "StarUML",
licenseType: "vip",
quantity: "bbs.chinapyg.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
輸入:Name:0xbc
licenseKey:later equals never!
Enter! Enjoy!