Results 1 to 6 of 6
  1. #1
    Marthz's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    ghfg
    Posts
    50
    Reputation
    10
    Thanks
    5

    [Tutorial] Fake Email Generator

    Ok first add a 2 Buttons, and a Textbox.
    This will make 1000 fake emails.

    Button1 - Generate
    Button2 - Save
    Textbox1 - Holds Emails

    Also add a Textfile Resource named words,, Put a random word list in the word resource file. They have to be all on a new string like this though.
    Word1
    Word2
    Word3

    You can find word lists everywhere so it wont be a problem.

    Source ~

    Code:
    Public Class Form1
        Private words() As String
        Private Names() As String = {"@hotmail.com", "@yahoo.com", "@gmail.com"}
        Private RandGen As Random
    
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            RandGen = New Random()
            Dim tmp As String = My.Resources.words.Replace(vbCrLf, ";")
            Dim words() As String = tmp.Split(";"c)
        End Sub
    
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            Dim s As String
            For i = 0 To 999
                s = words(RandGen.Next(0, words.Length))  ' Get a random word from the word list read from the file
                s &= RandGen.Next(1000, 10000).ToString() ' Get a random number between 1000 and 9999
                s &= Names(RandGen.Next(0, Names.Length)) ' Get a random name from the list of names
                TextBox1.AppendText(s & Environment.NewLine)
            Next
    
        End Sub
    
        Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
            Dim myString As String = TextBox1.Text
            Dim file As System.IO.FileStream
            file = System.IO.File.Create("\emails.txt")
            IO.File.WriteAllText("\field.txt", myString)
        End Sub
    End Class

    Ok now.


    Code:
    Private words() As String ' The words that it will use
        Private Names() As String = {"@hotmail.com", "@yahoo.com", "@gmail.com"} ' The ending
        Private RandGen As Random ' The numbers to be added after the word
    Next,

    Code:
    RandGen = New Random()
            Dim tmp As String = My.Resources.words.Replace(vbCrLf, ";") ' Loads the word resource
            Dim words() As String = tmp.Split(";"c) ' Same here
    Next,

    Code:
    Dim s As String
            For i = 0 To 999
                s = words(RandGen.Next(0, words.Length))  ' Get a random word from the word list read from the file
                s &= RandGen.Next(1000, 10000).ToString() ' Get a random number between 1000 and 9999
                s &= Names(RandGen.Next(0, Names.Length)) ' Get a random name from the list of names
                TextBox1.AppendText(s & Environment.NewLine) ' Appends the text to the next box and everytime on  a new line
            Next
    Next,

    Code:
     Dim myString As String = TextBox1.Text
            Dim file As System.IO.FileStream
            file = System.IO.File.Create("\emails.txt") ' Creates the email file
            IO.File.WriteAllText("\field.txt", myString) ' Saves all the text from textbox to it
    CREDITS:Negative0
    Last edited by Obama; 01-15-2010 at 02:52 PM.
    Ah yes. Outstanding.

  2. The Following 2 Users Say Thank You to Marthz For This Useful Post:

    NextGen1 (01-15-2010),Obama (01-15-2010)

  3. #2
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Quote Originally Posted by Marthz View Post
    Ok first add a 2 Buttons, and a Textbox.
    This will make 1000 fake emails.

    Button1 - Generate
    Button2 - Save
    Textbox1 - Holds Emails

    Also add a Textfile Resource named words,, Put a random word list in the word resource file. They have to be all on a new string like this though.
    Word1
    Word2
    Word3

    You can find word lists everywhere so it wont be a problem.

    Source ~

    Code:
    Public Class Form1
        Private words() As String
        Private Names() As String = {"@hotmail.com", "@yahoo.com", "@gmail.com"}
        Private RandGen As Random
    
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            RandGen = New Random()
            Dim tmp As String = My.Resources.words.Replace(vbCrLf, ";")
            Dim words() As String = tmp.Split(";"c)
        End Sub
    
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            Dim s As String
            For i = 0 To 999
                s = words(RandGen.Next(0, words.Length))  ' Get a random word from the word list read from the file
                s &= RandGen.Next(1000, 10000).ToString() ' Get a random number between 1000 and 9999
                s &= Names(RandGen.Next(0, Names.Length)) ' Get a random name from the list of names
                TextBox1.AppendText(s & Environment.NewLine)
            Next
    
        End Sub
    
        Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
            Dim myString As String = TextBox1.Text
            Dim file As System.IO.FileStream
            file = System.IO.File.Create("\emails.txt")
            IO.File.WriteAllText("\field.txt", myString)
        End Sub
    End Class

    Ok now.


    Code:
    Private words() As String ' The words that it will use
        Private Names() As String = {"@hotmail.com", "@yahoo.com", "@gmail.com"} ' The ending
        Private RandGen As Random ' The numbers to be added after the word
    Next,

    Code:
    RandGen = New Random()
            Dim tmp As String = My.Resources.words.Replace(vbCrLf, ";") ' Loads the word resource
            Dim words() As String = tmp.Split(";"c) ' Same here
    Next,

    Code:
    Dim s As String
            For i = 0 To 999
                s = words(RandGen.Next(0, words.Length))  ' Get a random word from the word list read from the file
                s &= RandGen.Next(1000, 10000).ToString() ' Get a random number between 1000 and 9999
                s &= Names(RandGen.Next(0, Names.Length)) ' Get a random name from the list of names
                TextBox1.AppendText(s & Environment.NewLine) ' Appends the text to the next box and everytime on  a new line
            Next
    Next,

    Code:
     Dim myString As String = TextBox1.Text
            Dim file As System.IO.FileStream
            file = System.IO.File.Create("\emails.txt") ' Creates the email file
            IO.File.WriteAllText("\field.txt", myString) ' Saves all the text from textbox to it

    First give credit where it is do, Pradeep1210 , Negative0 gave you that code over there on (unmentioned forum).

    After you give credit to everyone who gave you that code, Ill say "good job on sharing what you have learned"

    Edit: Thanks, I'm personally big on giving credit where it is do, thanks for sharing, you have been thanked
    Last edited by NextGen1; 01-15-2010 at 02:57 PM.


     


     


     



    The Most complete application MPGH will ever offer - 68%




  4. #3
    Marthz's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    ghfg
    Posts
    50
    Reputation
    10
    Thanks
    5
    Quote Originally Posted by NextGen1 View Post
    First give credit where it is do, Pradeep1210 , Negative0 gave you that code over there on (unmentioned forum).

    After you give credit to everyone who gave you that code, Ill say "good job on sharing what you have learned"

    Edit: Thanks, I'm personally big on giving credit where it is do, thanks for sharing, you have been thanked
    I'm surprised you know that. Pradeep really didn't help all he did was put a & that's all. I don't seem why you would get into all of that anyways.
    Last edited by Marthz; 01-15-2010 at 03:08 PM.
    Ah yes. Outstanding.

  5. #4
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Quote Originally Posted by Marthz View Post
    I'm surprised you know that. Pradeep really didn't help all he did was put a & that's all. I don't seem why you would get into all of that anyways.
    Always give credit, leechers get no credit here at all, so give credit if it's not yours, simple really, anyone of us VB guys (or even the C guys who come over to say hi every now and then) would say something about giving credit.

    I just got here first
    Last edited by NextGen1; 01-15-2010 at 05:45 PM.


     


     


     



    The Most complete application MPGH will ever offer - 68%




  6. #5
    Marthz's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    ghfg
    Posts
    50
    Reputation
    10
    Thanks
    5
    Crap on

    Code:
     Dim myString As String = TextBox1.Text
            Dim file As System.IO.FileStream
            file = System.IO.File.Create("\emails.txt") ' Creates the email file
            IO.File.WriteAllText("\field.txt", myString) ' Saves all the text from textbox to it
    Change it to

    Code:
     Dim myString As String = TextBox1.Text
            Dim file As System.IO.FileStream
            file = System.IO.File.Create("\emails.txt") ' Creates the email file
            IO.File.WriteAllText("\emails.txt", myString) ' Saves all the text from textbox to it
    Ah yes. Outstanding.

  7. #6
    treeham's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    heh. Turn around.
    Posts
    200
    Reputation
    10
    Thanks
    41
    My Mood
    Cynical
    or you can use blahblah@fakemail.com
    Found that out myself :]
    In Choob Language:
    also for all your info.. i didnt copy and paste shit.. coz i dont think anyone has realeased any source code for the New update of CA.. so sdfu..
    In English:
    I didn't copy and paste because no one has released what I need copy and paste
    Oh Choobs...

Similar Threads

  1. Fake CC Generator
    By BoxxyBabee in forum Spammers Corner
    Replies: 11
    Last Post: 08-26-2011, 08:54 PM
  2. [Info] fake emails!!!
    By bgs twinz in forum RuneScape Discussions
    Replies: 17
    Last Post: 07-17-2011, 03:52 PM
  3. [Tutorial]Fake email that works
    By House in forum General Hacking
    Replies: 9
    Last Post: 01-19-2011, 08:43 AM
  4. [Help]Hotmail Email Generator
    By ☆TIS☆ in forum Visual Basic Programming
    Replies: 11
    Last Post: 05-05-2010, 12:11 AM
  5. Email Generator
    By ppl2pass in forum Visual Basic Programming
    Replies: 14
    Last Post: 02-21-2010, 07:02 PM