Page 1 of 1

Vb.net Tutorial [Repeat E-mail Sender]

Posted: Fri Dec 11, 2009 7:42 pm
by hiyadutch
Hello, this is a vb.net tutorial how to make a easy e-mail bomber.

Not to be used for malicious purposes.

first make
-form1
-2 buttons (button1 and button2)
-timer1
-4x textbox (textbox1, textbox2, textbox3, textbox4)
-4x labels (label1, label2, label3, label4) (txt on it) (To:, Subject:, Message(multilined), Interval:)

then make another form:
-Loginform1
-make it bigger and add some stuff in it:
-add 2 textboxex (textbox1, textbox2)
-add 1 button (txt on it = save)
-add 2 labels (txt on it = SMTP: and Port:)

IM NOT CHANGING ANY NAME!!!! just the default names

OK, then now go to 'My Project' -> 'Application' (startup form = loginform1) and (Shutdown mode: When last form closes)
then go to settings make 4 settings called 'save1, save2, save3, save4'

First we are going to do loginform!!!!!
in the button1(with text save) type this:
Code: Select all
 My.Settings.save1 = TextBox1.Text
        My.Settings.Save()

        My.Settings.save2 = TextBox2.Text
        My.Settings.Save()

        My.Settings.save3 = UsernameTextBox.Text
        My.Settings.Save()

        My.Settings.save4 = PasswordTextBox.Text
        My.Settings.Save()
ok then in the OK button type this
Code: Select all
      Form1.Show()
        Me.Hide()
and in the loginform load:

Code: Select all
  TextBox1.Text = My.Settings.save1
        TextBox2.Text = My.Settings.save2
        UsernameTextBox.Text = My.Settings.save3
        PasswordTextBox.Text = My.Settings.save4]

now we did loginform lets go to form1:

put this code in form1.timer1:
Code: Select all
   Dim mail As New MailMessage
        mail.To.Add(TextBox1.Text)
        mail.From = New MailAddress(LoginForm1.UsernameTextBox.Text)
        mail.Subject = TextBox2.Text
        mail.Body = TextBox3.Text
        Dim smtp As New SmtpClient(LoginForm1.TextBox1.Text)

        smtp.Port = (LoginForm1.TextBox2.Text)
        smtp.EnableSsl = True
        smtp.Credentials = New System.Net.NetworkCredential(LoginForm1.UsernameTextBox.Text, LoginForm1.PasswordTextBox.Text)
        smtp.Send(mail)
and this in button1:
Code: Select all
timer1.enabled = true
timer1.interval = textbox4.text
button2:
Code: Select all
timer1.enabled = false
add this to the form1 code:
Code: Select all
Private Sub Form1_FormClosed(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosedEventArgs) Handles Me.FormClosed
        LoginForm1.Close()

    End Sub
then work somthing about the layout and spam devil;

btw some extra information:
-smtp.gmail.com is for gmail
-smtp.live.com is for live/hotmail
-default port = 587
Bomberscreen.jpg

This is my bomberaar + messenger tools atm

Re: Vb.net Tutorial [E-mail BOMBER]

Posted: Wed Jan 06, 2010 4:58 pm
by Usman55
That was great! I like it! Thanks!

Re: Vb.net Tutorial [E-mail BOMBER]

Posted: Fri Jun 04, 2010 2:34 pm
by cvilanova
you are a sick people..... lmao; I like it.... thanks!! jejejeje :lol:

Re: Vb.net Tutorial [E-mail BOMBER]

Posted: Fri Jun 04, 2010 2:45 pm
by mandai
Use responsibly right?

Re: Vb.net Tutorial [E-mail BOMBER]

Posted: Wed Jun 09, 2010 9:31 am
by hungryhounduk
Use responsibly right?
mmm I dont think that would be possible with a Program like that , but i could be mistaken :)

Re: Vb.net Tutorial [Repeat E-mail Sender]

Posted: Sat Jun 19, 2010 1:02 pm
by reptilon
can you please make /w pictures in ur tutorial? (they will get better then) hehaho;

Re: Vb.net Tutorial [Repeat E-mail Sender]

Posted: Sat Jun 19, 2010 5:47 pm
by Lewis
I like the look of this - i wont be using it though - i will get carried away.

Re: Vb.net Tutorial [Repeat E-mail Sender]

Posted: Wed Jun 23, 2010 9:49 pm
by tsuyoka
I got suspended for trying this at school :( But its still an amazing idea devil;

Re: Vb.net Tutorial [Repeat E-mail Sender]

Posted: Fri Aug 06, 2010 2:00 pm
by tom_inc
i have error in here "LoginForm1.UsernameTextBox.Text" string is empty what i DO???

Re: Vb.net Tutorial [Repeat E-mail Sender]

Posted: Fri Aug 06, 2010 4:06 pm
by mandai
You could try filling out the username for your SMTP server.