Results 1 to 9 of 9
  1. #1
    scimmyboy's Avatar
    Join Date
    Jan 2008
    Gender
    male
    Location
    https://mpgh.net MPGHCash: $442,596,199
    Posts
    5,645
    Reputation
    26
    Thanks
    896
    My Mood
    Happy

    [Source Code] Email Bomber/Spammer

    Email Spammer (only works for gmail accounts atm)

    Source by me, references to books


    The spammer currently only works with Gmail accounts, and will cut off at around 600 emails due to their smtp server. Enjoy

    Code:
    Imports System.Net.Mail
    Public Class Form1
        Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
            ProgressBar1.Increment(1)
            If ProgressBar1.Value = ProgressBar1.Maximum Then
                Dim MyMailMessage As New MailMessage()
                MyMailMessage.From = New MailAddress(TextBox1.Text)
                MyMailMessage.To.Add(TextBox3.Text)
                MyMailMessage.Subject = (TextBox4.Text)
                MyMailMessage.Body = (RichTextBox1.Text)
                Dim SMTPServer As New SmtpClient("smtp.gmail.com")
                SMTPServer.Port = 587
                SMTPServer.Credentials = New System.Net.NetworkCredential(TextBox1.Text, TextBox2.Text)
                SMTPServer.EnableSsl = True
                Label7.Text = Val(Label7.Text + 1)
                TextBox4.Text = Val(Label7.Text + 1)
                SMTPServer.Send(MyMailMessage)
            End If
        End Sub
    
        Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            Timer1.Start()
        End Sub
    
        Private Sub Button2_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
            Timer1.Stop()
        End Sub
    End Class
    Please be sure to include the Imports System.Net.Mail at the top of the form.

    I added the progressbar for fun while I was practicing some shit.
    Last edited by scimmyboy; 02-23-2010 at 07:27 PM.

  2. #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
    The Code

    Code:
    im MyMailMessage As New MailMessage()
                MyMailMessage.From = New MailAddress(TextBox1.Text)
                MyMailMessage.To.Add(TextBox3.Text)
    Shows this is partly leeched, Granted there has been some additions to a very traditional textbook email sender, it is still not "your code"

    But thanks for sharing



     


     


     



    The Most complete application MPGH will ever offer - 68%




  3. #3
    scimmyboy's Avatar
    Join Date
    Jan 2008
    Gender
    male
    Location
    https://mpgh.net MPGHCash: $442,596,199
    Posts
    5,645
    Reputation
    26
    Thanks
    896
    My Mood
    Happy
    well, of course ive been reading books and shit. email spammers arent that hard to make

  4. #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
    I understand , Just referring to

    "Again, source by me!"


     


     


     



    The Most complete application MPGH will ever offer - 68%




  5. #5
    scimmyboy's Avatar
    Join Date
    Jan 2008
    Gender
    male
    Location
    https://mpgh.net MPGHCash: $442,596,199
    Posts
    5,645
    Reputation
    26
    Thanks
    896
    My Mood
    Happy
    Well, it is original, cuz i didnt Copy and Paste off some website. used what i KNEW to write it.

  6. #6
    ppl2pass's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    804
    Reputation
    5
    Thanks
    111
    My Mood
    Amused
    how fast can it send 600 emails?

  7. #7
    scimmyboy's Avatar
    Join Date
    Jan 2008
    Gender
    male
    Location
    https://mpgh.net MPGHCash: $442,596,199
    Posts
    5,645
    Reputation
    26
    Thanks
    896
    My Mood
    Happy
    Quote Originally Posted by ppl2pass View Post
    how fast can it send 600 emails?
    depends how fast ur comp and internet is

  8. #8
    skiiiz's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    119
    Reputation
    10
    Thanks
    11
    The smtp server for Hotmail & Live emails is:
    Code:
    smtp.live.com
    make a combo box or something.

  9. #9
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    /CLosed

    Please don't bump old threads = or < 7 days

    Sorry


     


     


     



    The Most complete application MPGH will ever offer - 68%




Similar Threads

  1. [Tutorial] Multi-Line Spammer Tutorial + Source code and project
    By dragonattak in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 5
    Last Post: 07-05-2011, 04:40 AM
  2. [Source Code] Spammer Source Code
    By Takari in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 6
    Last Post: 05-25-2011, 07:12 AM
  3. (tut)My spammer Source code
    By sam22 in forum Visual Basic Programming
    Replies: 5
    Last Post: 10-31-2010, 11:12 PM
  4. [Request] Gmail eMail Sending Source Code
    By deocute in forum Visual Basic Programming
    Replies: 5
    Last Post: 01-15-2010, 01:19 PM
  5. HALO 2 (XBOX) Source Code
    By mirelesmichael in forum General Game Hacking
    Replies: 12
    Last Post: 09-23-2006, 04:35 AM