The Wing IDE is a python-language IDE that includes a large number of syntax tags highlighting. Compared to other similar Ides, Wingide's biggest feature is the ability to debug Django applications. Wingide is a pretty good IDE, although it's just a Python-oriented tool. The source browser is very real to browse the project or module (the table is now navigable in the source code and the document line summary). Although there is no monitor, the debugger is well designed.
1. Wingide Download
The latest version can be downloaded from the official website, http://www.wingide.com/downloads
2. Registration hack
The hack needs to use a Python script: http://download.csdn.net/detail/sunmc1204953974/8689733
Script Source:
ImportShaImportStringBASE2 =' a 'BASE10 =' 0123456789 'BASE16 =' 0123456789ABCDEF 'BASE30 =' 123456789ABCDEFGHJKLMNPQRTVWXY 'BASE36 =' 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ 'BASE62 =' abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz 'Basemax = string.printable def baseconvert(number, fromdigits, todigits, ignore_negative = True): "" "Converts a" number "between-bases of arbitrary digits the input number is assumed-be-a string of digits from The Fromdigits string (which is in order of smallest to largest digit). The return value is a string of elements from Todigits (ordered in the same). The input and output bases is determined from the lengths of the digit strings. Negative signs is passed through. Decimal to Binary >>> baseconvert (555,base10,base2) ' 1000101011 ' binary to decimal >>> basec Onvert (' 1000101011 ', base2,base10) ' 555 ' integer interpreted as binary and converted to decimal (!) >>> Baseconvert (1000101011,base2,base10) ' 555 ' base10 to Base4 >>> Baseconvert (99,base10, "0123" ) ' 1203 ' Base4 to BASE5 (with alphabetic digits) >>> Baseconvert (1203, "0123", "ABCDE") ' Dee ' Base5, Alpha digits back to base >>> Baseconvert (' Dee ', ' ABCDE ', BASE10) ' A ' in ' decimal to a base thatUses a-z0-9a-z for its digits >>> baseconvert (257938572394l,base10,base62) ' E78lxik '. Convert back >>> baseconvert (' E78lxik ', base62,base10) ' 257938572394 ' binary to a base with words for dig Its (the function cannot convert this back) >>> Baseconvert (' 1101 ', BASE2, (' Zero ', ' One ')) ' Oneonezeroone ' """ if notIgnore_negative andSTR (number) [0] =='-': Number = str (number) [1:] Neg =1 Else: Neg =0x = Long (0) forDigitinchSTR (number): x = x * Len (fromdigits) + fromdigits.index (digit) res ="' whileX >0: digit = x% len (todigits) res = Todigits[digit] + res x/= len (todigits)ifNeg:res ='-'+ ResreturnRes def SHAToBase30(Digest): "" " Convert from a hexdigest form SHA hash to a more compact and ergonomic BASE30 representation. This results in a ' digit ' number. "" "Tdigest ="'. join ([C forI, CinchEnumerate (Digest)ifI2*2= = i]) result = Baseconvert (Tdigest, BASE16, BASE30) whileLen (Result) < -: result =' 1 '+ ResultreturnResult def addhyphens(code): "" " Insert hyphens into given license ID or activation request to do it easier to read " " returncode[:5] +'-'+ code[5:Ten] +'-'+ code[Ten: the] +'-'+ code[ the:]licenseid=' cn123-12345-12345-12345 '#Copy the Request Code from the dialogRequestcode=' rl52x-fpeb8-je85p-aex97 'Hasher = Sha.new () hasher.update (Requestcode) hasher.update (Licenseid) digest = Hasher.hexdigest (). Upper () Lichash = requestcode[:3] + SHAToBase30 (Digest) Lichash=addhyphens (Lichash)#Calculate the Activation Codedata=[7,123, at, the]tmp=0Realcode="' forIinchData forJinchLichash:tmp= (Tmp*i+ord (j)) &0xFFFFFRealcode+=format (TMP,' =05x ') tmp=0Act30=baseconvert (REALCODE,BASE16,BASE30) whileLen (ACT30) < -: Act30 =' 1 '+ act30act30=' AXX '+act30act30=addhyphens (ACT30)Print "The Activation Code is:"+act30
Specific methods of cracking:
1) Install Wingide After successful start, enter license ID when activating cn123-12345-12345-12345
2) Click on the Continue box and copy the request code in the box.
3) Modify the request code in the Python script to the request code value you just received, run the script and get the activation code, fill in to register successfully
Under Ubuntu also successfully cracked, Pro test available:
Reprint Please specify source: http://blog.csdn.net/sunmc1204953974
Wingide installation Hack (can also be used under Ubuntu)