WingIDE 6 cracking method

Reprint link 1 : http://download.csdn.net/detail/dreamerswing/9724772?web=web

Transforming contact 2 : http://lovesoo.org/wingide-zhu-ce-po-jie-fang-fa.html


1) Start after installing WingIDE successfully, enter license id CN123-12345-12345-12345 when activating


2) After clicking Continue, a pop-up box will pop up and copy the request code in the box


3) Modify the RequestCode in the third line of the following code to the Request Code value just obtained, and then save it as crack.py

#!/usr/bin/env python3
LicenseID='CN123-12345-12345-12345'
RequestCode='RL63D-H11RX-APR53-RLM84'
import hashlib
B16 = '0123456789ABCDEF'
B30 = '123456789ABCDEFGHJKLMNPQRTVWXY'
def B(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 S(D):
  r = B(''.join([c for i,c in enumerate(D) if i//2*2==i]),B16,B30)
  while len(r) < 17:
    r = '1' + r
  return r
def A(c):
  return c[:5]+'-'+c[5:10]+'-'+c[10:15]+'-'+c[15:]
h = hashlib.sha1()
h.update(RequestCode.encode('utf-8')+LicenseID.encode('utf-8'))
lichash=A(RequestCode[:3]+S(h.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=B(realcode,B16,B30)
while len(D) < 17:
  D = '1' + D
print("The Activation Code is: "+A('AXX'+D))

4) Open the command line (Ctrl+Alt+T) and enter the command

python/path/crack.py

Get an activation code.

5) Enter the activation code, successful.

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=326057576&siteId=291194637