StarUML软件设计建模工具破解

匿名 (未验证) 提交于 2019-12-03 00:28:02

转载自:https://blog.csdn.net/helencoder/article/details/51932722

参考:http://bbs.chinapyg.com/thread-79022-1-1.html


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

function validate(PK, name, product, licenseKey) {         var pk, decrypted;         // edit by 0xcb         return {             name: "helencoder",             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;         }     }
  • 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






然后提示你注册成功!

名字可以自己指定。

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!