Giter Site home page Giter Site logo

wing-ide-7-keygen's Introduction

WingIDE-keygen

Activation code generator for Wing IDE v7

Use

  1. Run
    python3 keygen.py
  2. Copy the license ID and paste it in Wing IDE activation prompt
  3. Copy the request code (usually starts with R) from Wing IDE and paste it in the terminal
  4. Copy the activation code (starts with AXX) and paste it in the Wing IDE prompt

wing-ide-7-keygen's People

Contributors

0x14rp avatar thecaralice avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

wing-ide-7-keygen's Issues

TypeError: __hash_new() missing

line 50, in <module>
    hasher = hashlib.new()
TypeError: __hash_new() missing 1 required positional argument: 'name'

Process finished with exit code 1

How fix this?

I dont know how to use

what is wing ide?

PS C:\Users\chao\Downloads> conda activate base
(base) PS C:\Users\chao\Downloads> python .\keygen.py
License id: CNMHH-WJGV4-4YEAJ-3MTKN
Enter request code: CNMHH-WJGV4-4YEAJ-3MTKN
Activation code: AXXPW-XQCEP-3Y7J3-NCPM1

am I correct?

V7 - update code fix, tested and working using python 2.7

Embedded file name: kgv7.py

import string
import random
import sha
BASE16 = '0123456789ABCDEF'
BASE30 = '123456789ABCDEFGHJKLMNPQRTVWXY'

def randomstring(size = 20, chars = string.ascii_uppercase + string.digits):
return ''.join((random.choice(chars) for _ in range(size)))

def BaseConvert(number, fromdigits, todigits, ignore_negative = True):
if not ignore_negative and str(number)[0] == '-':
number = str(number)[1:]
neg = 1
else:
neg = 0
x = long(0)
for digit in str(number):
x = x * len(fromdigits) + fromdigits.index(digit)

res = ''
while x > 0:
    digit = x % len(todigits)
    res = todigits[digit] + res
    x /= len(todigits)

if neg:
    res = '-' + res
return res

def AddHyphens(code):
return code[:5] + '-' + code[5:10] + '-' + code[10:15] + '-' + code[15:]

def SHAToBase30(digest):
tdigest = ''.join([ c for i, c in enumerate(digest) if i / 2 * 2 == i ])
result = BaseConvert(tdigest, BASE16, BASE30)
while len(result) < 17:
result = '1' + result

return result

def loop(ecx, lichash):
part = 0
for c in lichash:
part = ecx * part + ord(c) & 1048575

return part

rng = AddHyphens('CN' + randomstring(18, '123456789ABCDEFGHJKLMNPQRTVWXY'))
print 'License id: ' + rng
act30 = raw_input('Enter request code:')
lichash = act30
hasher = sha.new()
hasher.update(act30)
hasher.update(rng)
lichash = AddHyphens(lichash[:3] + SHAToBase30(hasher.hexdigest().upper()))
part5 = format(loop(221, lichash), '05x') + format(loop(13, lichash), '05x') + format(loop(93, lichash), '05x') + format(loop(27, lichash), '05x')
part5 = BaseConvert(part5.upper(), BASE16, BASE30)
while len(part5) < 17:
part5 = '1' + part5

part5 = 'AXX' + part5
print 'Activation code: ' + AddHyphens(part5)
textcode = 'Activation code: ' + AddHyphens(part5)

text_file = open("Generated activation Code.txt", 'w') # open text file so we can write to it
convert = str(textcode) # change int to string
text_file.write("Text file added By MrDude\n\nDon't Delete or Rename\n\n" + convert) # write what type of service we are using for debug purposes
text_file.close() # close the text file - we don't need to keep this open

version 7

I'm also in need of the keygen for version 7

Invalid activation key

Hello. I tried this keygen on wing pro 7.2.9 and its not working and giving the following error.

Invalid activation key: AXXEE-7YQB4-ADQ9T-56D21. Please check and correct it. Validation errors were:

Pending activation /home/andrio/.wingpro7/license.pending8 -- failed:
Activation key not valid for this license:
Invalid license activation

Current activation -- failed:
Activation key not valid for this license:
Invalid license activation

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.