WingIDE 6企業(yè)版-Python 3破解辦法


1. 破解成功示意圖

Wing IDE 已經(jīng)更新到 6 版本了,版本 5 的注冊(cè)機(jī)代碼已經(jīng)不能用了,于是我就上網(wǎng)找度娘,瀏覽了很多博客,網(wǎng)頁。綜合各種資料找到了解決方案。先上一張我的激活示意圖。

image

0x02 注冊(cè)機(jī)代碼

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 注冊(cè)過程

注冊(cè)過程還是很簡單的。

step1:

把注冊(cè)機(jī)代碼文件放在桌面,按住“shift”同時(shí)單擊鼠標(biāo)右鍵,選擇“在此處打開命令窗口”
image

step2:

在命令窗口中輸入“python crack.py”,回車

image

step3:

上述步驟生成注冊(cè)碼,復(fù)制注冊(cè)碼,然后輸入到下圖中的位置,點(diǎn)擊“Continue”。

image
image

step4:

復(fù)制“request code”到命令窗口中,回車即可得到激活碼(activation key)

image

step5:

復(fù)制激活碼,填到相應(yīng)位置,點(diǎn)擊“Continue”,即可激活

image
image

0x04 That’s all right !!

為防止復(fù)制代碼出錯(cuò),附上注冊(cè)機(jī)代碼文件:crack.py (注:如果鏈接失效,請(qǐng)留言通知)

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容