Sonsivri

Electronics => Pic C Languages => Topic started by: sonsivritwchen on April 16, 2008, 02:43:38 14:43



Title: Wiz-C v.15 is out.
Post by: sonsivritwchen on April 16, 2008, 02:43:38 14:43
Wiz-C v.15 from Forest Electronics is out. Interested users may try the download link:
http://www.fored.co.uk/html/wiz-c_download.html


Title: Re: Wiz-C v.15 is out.
Post by: gonzogonzo on April 16, 2008, 04:45:30 16:45
I don't love very much this program but You can use old key generator for v14in this forum to unlock it;
someone has USB library for it??


Title: Re: Wiz-C v.15 is out.
Post by: lillbear on April 21, 2008, 08:44:51 20:44
Crack or KeyGen? someone  :P

yours


Title: Re: Wiz-C v.15 is out.
Post by: sonsivritwchen on April 22, 2008, 01:57:38 01:57
The keygen for previous version is still working.


Title: Re: Wiz-C v.15 is out.
Post by: lillbear on April 22, 2008, 05:46:16 17:46
Well maybe u post link of it then  ::)

yours


Title: Re: Wiz-C v.15 is out.
Post by: mbandala on April 23, 2008, 06:33:00 18:33
Here you go!


Title: Re: Wiz-C v.15 is out.
Post by: kcsoft on November 14, 2008, 10:46:00 10:46
Re-uploaded
http://www.megaupload.com/?d=TSXKZAGB (http://www.megaupload.com/?d=TSXKZAGB)

Modified post: this works for v15.0, not for newer v15.4


Title: Re: Wiz-C v.15 is out.
Post by: FriskyFerret on November 14, 2008, 04:19:55 16:19
Note from the publisher's website:

"...The demonstration version DOES NOT include additional libraries (Bootloader, Graphic LCD and stdio/stdlib/ctype which are only included on the CD which will be sent if the demonstration is unlocked)."


Title: Re: Wiz-C v.15 is out.
Post by: recan on November 14, 2008, 04:28:18 16:28
keygen not working...


Title: Re: Wiz-C v.15 is out.
Post by: recan on November 15, 2008, 06:00:20 18:00
very poor english... excuse-me
i tried the two keygen in this topic, both generate the same number(239675113) for the same serial number of wiz-15 (4-160-185-209), After registration whit this number and restarded the program, it still in demo state....
The program was downloaded from the Forest site and his version is 15.04.


Title: Re: Wiz-C v.15 is out.
Post by: FriskyFerret on November 15, 2008, 08:33:28 20:33
Your English is better than many posts on this forum.

I tried both keygens and received the same result as you. The smaller keygen with size of 32,768 bytes and CRC32 of DCD9D34F required Visual C++ 8 (2005) runtime library installed to function.

A new keygen is supposedly under development and may be ready soon.


Title: Re: Wiz-C v.15 is out.
Post by: recan on November 16, 2008, 06:25:51 18:25
Thank's.
Changing the installation directory, the serial number change to (0-009-319-560), this mean that the serial number is directory dependant, and the generated number change to (2043146040) but still not working.
I am shearching for on old keygen made by me in delphi whit a little bug but it work for the version 10 to test it.


Title: Re: Wiz-C v.15 is out.
Post by: recan on November 16, 2008, 11:23:54 23:23
I found the source code of my fedkeygen and analysed wiz-c whit IDA... i found that the way of testing key was litle chanded.
i just compiled this new one that work for wiz-c V 15.04.


Title: Re: Wiz-C v.15 is out.
Post by: ahmed on November 17, 2008, 03:16:41 03:16
I found the source code of my fedkeygen and analysed wiz-c whit IDA... i found that the way of testing key was litle chanded.
i just compiled this new one that work for wiz-c V 15.04.

Can u upload source code of fedkeygen and analyzer software


Title: Re: Wiz-C v.15 is out.
Post by: recan on November 17, 2008, 08:24:14 20:24
in Fedkeygen enter the serial number without the "-" sign... ex:for (4-160-185-209), enter 4160185209.

FOR IDA soft, try these link:
http://rapidshare.com/files/73980697/IDA_Pro_Advanced_v5.2.rar
http://rapidshare.com/files/73985683/FIX-UNiQUE.rar
http://rapidshare.com/files/73981602/DataRescue.IDA.Pro.Advanced.v5.2.SDK-YAG.rar
http://rapidshare.com/files/73985804/Hex-Rays.Decompiler.v1.0.for.DataRescue.IDA.Pro.Advanc ed.v5.2-YAG.rar
http://rapidshare.com/files/73981982/DataRescue.IDA.Pro.Advanced.v5.2.Official.Utilitie s.Addons-YAG.rar

And the main code for keygen :

procedure TWIZ15Keygen.Generate(Sender: TObject);
var Str1: String[20];
var Key1,Key2:  Longint;
begin
    if SerialNumber.Text='' then Str1:='1'  else Str1:= SerialNumber.Text;       
   Key1:=(((strtoint64(Str1) xor $D2360937)-937730832) xor $71D7AE1);
   Key2:= Key1 xor $201C3208;
        NormalKey.Text:= inttostr(Key1 xor $4655434B );
        ProfKey.Text:= inttostr(Key2 xor $4655434B );
end;