最新wingide6破解方法(支持Linux),亲测有效,支持python3.0

来源:互联网 发布:大数据新闻标题 编辑:程序博客网 时间:2024/06/13 01:22

http://blog.csdn.net/u011128775/article/details/70140255


1.用记事本打开wingide6.py(下面有源码和下载地址) ,修改LiscenseID  随便修改哪一位 ,先不要急着关闭wingide6.py,待会还需要修改!


2.打开wingide6把修改好的LiscenseID填入第三个(LiscenseID最好不要和图片上一样,否则可能导致激活失败),点击Continue


3.选择第二个,复制Request到脚本中替换脚本中的Request code,这时候可以关闭脚本了,然后用python运行wingide6.py


4.用python运行wingide6.py  ,把算出的Code复制到上图第二个provideed activation key here 下面的输入框中,点击continue  ,大功告成!




下面是wingide6.py脚本源码

[html] view plain copy
  1. #!/usr/bin/env python3  
  2.   
  3. LicenseID='CN123-12345-12345-67891'  
  4. RequestCode='RL634-8363J-X7E8K-95XD3'  
  5. import hashlib  
  6. B16 = '0123456789ABCDEF'  
  7. B30 = '123456789ABCDEFGHJKLMNPQRTVWXY'  
  8. def B(n,f,t):  
  9.   xx = 0  
  10.   for d in str(n):  
  11.     xx = xx * len(f) + f.index(d)  
  12.   res = ''  
  13.   while xx > 0:  
  14.     res=t[int(xx%len(t))]+res  
  15.     xx//=len(t)  
  16.   return res  
  17. def S(D):  
  18.   r = B(''.join([c for i,c in enumerate(D) if i//2*2==i]),B16,B30)  
  19.   while len(r) < 17:  
  20.     r = '1' + r  
  21.   return r  
  22. def A(c):  
  23.   return c[:5]+'-'+c[5:10]+'-'+c[10:15]+'-'+c[15:]  
  24. h = hashlib.sha1()  
  25. h.update(RequestCode.encode('utf-8')+LicenseID.encode('utf-8'))  
  26. lichash=A(RequestCode[:3]+S(h.hexdigest().upper()) )  
  27. data=[23,161,47,9]  
  28. tmp=0  
  29. realcode=''  
  30. for i in data:  
  31.   for j in lichash:  
  32.     tmp=(tmp*i+ord(j))&0xFFFFF  
  33.   realcode+=format(tmp,'=05X')  
  34.   tmp=0  
  35. D=B(realcode,B16,B30)  
  36. while len(D) < 17:  
  37.   D = '1' + D  
  38. print("The Activation Code is: "+A('AXX'+D))  
[html] view plain copy

 

也可以去下载:http://download.csdn.net/detail/u011128775/9811384
原创粉丝点击