Login Register






Tutorial Fake Key Generator ! [Used for Niches] filter_list
Author
Message
Fake Key Generator ! [Used for Niches] #1
Today I will teach you how to create a quick key generator!

1. Drag a text box and a button to the form.

2. Double click Button1 to
open the code viewer.

3. Replace all the code with
this:
Code:
Public Class Form1 Dim objRandom As New System.Random( _ CType(System.DateTime.Now.Ticks Mod System.Int32.MaxValue, Integer)) Public Function GetRandomNumber( _ Optional ByVal Low As Integer = 1, _ Optional ByVal High As Integer = 100) As Integer Return objRandom.Next(Low, High + 1) End Function Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim textOrNum As Integer = 0 Dim code As String = Nothing Dim addHyphen As Integer = 0 Dim randomChars As String = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" Do If textOrNum = 0 Then code += (randomChars.Chars(GetRandomNumber(0, 25)).ToString) textOrNum = 1 addHyphen += 1 ElseIf textOrNum = 1 Then code += (GetRandomNumber(0, 9).ToString) addHyphen += 1 textOrNum = 0 End If If addHyphen = 5 Or addHyphen = 10 Or addHyphen = 15 Then code += "-" End If Loop Until code.Length = 23 TextBox1.Text = code End Sub End Class

4. Try to make your program
look as appealing as
possible. Add pictures of
your niche, or find a
VB.NET theme. Your goal
is to convince your viewer.

Reply

RE: Fake Key Generator ! [Used for Niches] #2
So it generates random characters. Doesn't run a malware server in the background, doesn't phiss.
What's the point? Lol
[Image: BAvhP6h.png]
Code:
[5:42:25 PM] i0xillusi0n: Breshie don't bust a nut over chloe now [5:42:31 PM] Entity: fapfapfapfapfapfapfapfapfapfap [5:42:33 PM] Jigglypuff | SL: EWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW

Reply

RE: Fake Key Generator ! [Used for Niches] #3
(04-08-2013, 04:35 AM)i0xIllusi0n Wrote: So it generates random characters. Doesn't run a malware server in the background, doesn't phiss.
What's the point? Lol

Yes, you can use this for fake key generators for PPD! Basically you use this for say a fake Microsoft Point code generator. You then would upload it to a PPD site and make a video about it on youtube and people will download it and you make all the $ !

Reply

RE: Fake Key Generator ! [Used for Niches] #4
(04-08-2013, 05:07 AM)Processor Wrote:
(04-08-2013, 04:35 AM)i0xIllusi0n Wrote: So it generates random characters. Doesn't run a malware server in the background, doesn't phiss.
What's the point? Lol

Yes, you can use this for fake key generators for PPD! Basically you use this for say a fake Microsoft Point code generator. You then would upload it to a PPD site and make a video about it on youtube and people will download it and you make all the $ !

Which gets you maybe a dollar over 8 months.
At least backdoor the goddamn thing xD
[Image: BAvhP6h.png]
Code:
[5:42:25 PM] i0xillusi0n: Breshie don't bust a nut over chloe now [5:42:31 PM] Entity: fapfapfapfapfapfapfapfapfapfap [5:42:33 PM] Jigglypuff | SL: EWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW

Reply

RE: Fake Key Generator ! [Used for Niches] #5
Thanks for this, I'm going to look for VB themes now Wink so I can make one.
[Image: bW7eyh8.png]
The trick is to enjoy life. Don't wish away your days, Waiting for better ones ahead.

Reply

RE: Fake Key Generator ! [Used for Niches] #6
(04-08-2013, 01:47 PM)i0xIllusi0n Wrote:
(04-08-2013, 05:07 AM)Processor Wrote:
(04-08-2013, 04:35 AM)i0xIllusi0n Wrote: So it generates random characters. Doesn't run a malware server in the background, doesn't phiss.
What's the point? Lol

Yes, you can use this for fake key generators for PPD! Basically you use this for say a fake Microsoft Point code generator. You then would upload it to a PPD site and make a video about it on youtube and people will download it and you make all the $ !

Which gets you maybe a dollar over 8 months.
At least backdoor the goddamn thing xD

Haha no not exactly! I make quite a bit from CPA/PPD !

Reply

RE: Fake Key Generator ! [Used for Niches] #7
Lots of ways this can be improved.
-- cxS

[ Haskell/.NET/C/C++ - Software Engineer ]

Reply

RE: Fake Key Generator ! [Used for Niches] #8
(04-08-2013, 11:25 PM)Processor Wrote:
(04-08-2013, 01:47 PM)i0xIllusi0n Wrote:
(04-08-2013, 05:07 AM)Processor Wrote:
(04-08-2013, 04:35 AM)i0xIllusi0n Wrote: So it generates random characters. Doesn't run a malware server in the background, doesn't phiss.
What's the point? Lol

Yes, you can use this for fake key generators for PPD! Basically you use this for say a fake Microsoft Point code generator. You then would upload it to a PPD site and make a video about it on youtube and people will download it and you make all the $ !

Which gets you maybe a dollar over 8 months.
At least backdoor the goddamn thing xD

Haha no not exactly! I make quite a bit from CPA/PPD !

Well, legitimately speaking. No bots in this context.
[Image: BAvhP6h.png]
Code:
[5:42:25 PM] i0xillusi0n: Breshie don't bust a nut over chloe now [5:42:31 PM] Entity: fapfapfapfapfapfapfapfapfapfap [5:42:33 PM] Jigglypuff | SL: EWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW

Reply