StarUML2 full platform cracking method

http://blog.csdn.net/hoo_chsodene/article/details/50741112

First, find the "LicenseManagerDomain.js" file in the installation directory;
secondly, change the above js file according to the code content shown in the following figure:
Code change content Figure
You can also refer to the following code snippet:
[javascript] view plain copy View code snippet on CODE derived from my code snippet
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; 
    } 

Finally, open the installed StarUML and select "help"->" enter license". Then enter the corresponding content according to the name and licenseKey in the above code. After confirming, it will prompt that the registration is successful.

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326568559&siteId=291194637