美文网首页
WingIDE 6企业版-Python 3破解办法

WingIDE 6企业版-Python 3破解办法

作者: wuli拉索哈迪 | 来源:发表于2018-12-13 00:49 被阅读0次

    1. 破解成功示意图

    Wing IDE 已经更新到 6 版本了,版本 5 的注册机代码已经不能用了,于是我就上网找度娘,浏览了很多博客,网页。综合各种资料找到了解决方案。先上一张我的激活示意图。

    image

    0x02 注册机代码

    import string
    import random
    import hashlib
     
    
    B16 = '0123456789ABCDEF'
    B30 = '123456789ABCDEFGHJKLMNPQRTVWXY'
     
     
    def randomstring(size=20, chars=string.ascii_uppercase + string.digits):
        return ''.join((random.choice(chars) for _ in range(size)))
        
     
    def AddHyphens(code):
        return code[:5] + '-' + code[5:10] + '-' + code[10:15] + '-' + code[15:]
     
     
    def BaseConvert(n,f,t):
      xx = 0
      for d in str(n):
        xx = xx * len(f) + f.index(d)
      res = ''
      while xx > 0:
        res=t[int(xx%len(t))]+res
        xx//=len(t)
      return res
     
     
    def SHAToB30(D):
      r = BaseConvert(''.join([c for i,c in enumerate(D) if i//2*2==i]),B16,B30)
      while len(r) < 17:
        r = '1' + r
      return r
     
     
    LicenseID = AddHyphens('CN' + randomstring(18, B30))
    print('License id: ' + LicenseID)
    RequestCode = input('Enter request code:')
    hasher = hashlib.sha1()
    hasher.update(RequestCode.encode('utf-8')+LicenseID.encode('utf-8'))
    lichash=AddHyphens(RequestCode[:3]+SHAToB30(hasher.hexdigest().upper()) )
    data=[23,161,47,9]
    tmp=0
    realcode=''
    for i in data:
      for j in lichash:
        tmp=(tmp*i+ord(j))&0xFFFFF
      realcode+=format(tmp,'=05X')
      tmp=0
    D=BaseConvert(realcode,B16,B30)
    while len(D) < 17:
      D = '1' + D
    print("The Activation Code is: "+AddHyphens('AXX'+D))
    
    

    0x03 注册过程

    注册过程还是很简单的。

    step1:

    把注册机代码文件放在桌面,按住“shift”同时单击鼠标右键,选择“在此处打开命令窗口”
    
    image

    step2:

    在命令窗口中输入“python crack.py”,回车

    image

    step3:

    上述步骤生成注册码,复制注册码,然后输入到下图中的位置,点击“Continue”。

    image image

    step4:

    复制“request code”到命令窗口中,回车即可得到激活码(activation key)

    image

    step5:

    复制激活码,填到相应位置,点击“Continue”,即可激活

    image image

    0x04 That’s all right !!

    为防止复制代码出错,附上注册机代码文件:crack.py (注:如果链接失效,请留言通知)

    相关文章

      网友评论

          本文标题:WingIDE 6企业版-Python 3破解办法

          本文链接:https://www.haomeiwen.com/subject/tfwmhqtx.html