Very nice, By any chance may i see opensource code? if not, its cool. =P
This is just a cool tool i wrote up that generates fake keys. I decided to us this as my first tool for taking my first few steps into the
visual basic universe i just thought this would be a nice little program to have
It's fairly easy to understand how to use just open it up and press the Generate key
and copy the code. it's also a very small program only (about 400kb unzipped) for those
with limited space.
Download Rapidshare
Download Filebeam
Finally i can guarantee my files don't have any viruses within it by scanning it with virus total here is the link
Virus Total Scan.
I will post new versions here! with update notes.
Version 1.0
+Finished Program with Raw GUI and Bad Coding to make key :P
Version 2.0
+Released on MMowned!
+GUI Overhaul and fixed coding to be completely random.- Thanks maclone for helping me on this part and added a new icon!
Version 3.0
+Added Time Code Generator along with the CD-Key Generator.
+Generates Codes in valid layout and both at the same time.
Please tell me your suggestions this is just for fun it can be used for scamming, and much more just be creative!
please ask if you would like to use this in any project to make sure i recieve the right amount of credit! Please note the links are not viruses just for a site called Linkbucks.
Last edited by iradiation; 04-03-2009 at 07:13 PM.
Very nice, By any chance may i see opensource code? if not, its cool. =P
Database Evolved Developer:wave:
ehh sorry id like to keep it quiet.
I'm not gonna lie, I dont see the need for so many of these, they all do the same thing....
Apoc has had one out for a WHILE now :/
Recon you could re-code it to be a "blizz authenticator" cracker?
Nice but useless. You could actualy type a CD key its longer but works same. +rep tfor contributing.
Why would anyone use a program like this? .. Just.. wow.
Suggestion:
Make a program where people enter their account details and click some "Activate Gamecard" Button.
Stop dissing the guy. He made a program to further his knowledge of VB and decides to share it with you guys and you guys shoot him down. l2chill.
Im just suggesting it.
There you go. Add a GUI, and you have yourself a generator for the 4 major WoW codes.Code:internal class CardGenerator { private static readonly char[] Charset = "abcdefghijklmnopqrstuvwxyz0123456789".ToCharArray(); private static readonly Random random = new Random(); ////// Gets a randomly generated time card code. Example: 3420-666698-16081-009008-6060 /// ///The get time card. /// 10/27/2008 9:15 AM public static string GetTimeCard { get { StringBuilder sb = new StringBuilder(); for (int j = 1; j <= 29; j++) { int next = random.Next(10); if (j == 5 || j == 12 || j == 18 || j == 25) { sb.Append("-"); continue; } sb.Append(next.ToString()); } return sb.ToString(); } } ////// Gets a randomy generated Trading Card Game code /// ///The get TCG card. /// 10/27/2008 9:15 AM public static string GetTCGCard { get { StringBuilder sb = new StringBuilder(); for (int i = 0; i < 29; i++) { if (i == 4 || i == 12 || i == 18 || i == 24) { sb.Append("-"); continue; } sb.Append(Charset[random.Next(Charset.Length)]); } return sb.ToString().ToUpper(); } } ////// Gets a randomly generated CD key. Example: RMXI7O-83DY-ZU6INW-8FMB-72XSG4 /// ///The get CD key. /// 10/27/2008 9:15 AM public static string GetCDKey { get { StringBuilder sb = new StringBuilder(); for (int i = 1; i <= 30; i++) { if (i == 7 || i == 12 || i == 19 || i == 24) { sb.Append('-'); continue; } sb.Append(Charset[random.Next(Charset.Length)]); } return sb.ToString().ToUpper(); } } ////// Gets a randomly generated Blizzard authenticator code. (Length ranges from 6-8 digits only.) /// ///The get authenticator. /// 10/27/2008 9:15 AM public static string GetAuthenticator { get { int rand = random.Next(6, 9); StringBuilder sb = new StringBuilder(); for (int i = 0; i < rand; i++) { sb.Append(random.Next(10)); } return sb.ToString(); } } }
Call the following:
And you have a random CDKey generated.Code:string myCDKey = CardGenerator.GetCDKey;
Enjoy.
This kind of stuff doesn't need to be secret iradiation. It's not difficult to create, and it's not hard to understand either.
+Rep for the contribution though.
ahh sorry apoc just some people were allz like DON"T GIVE SOURCE OUT like 2d said so i just did what they said(he is a mod so i just follow what the mods say they usually know best)