Gray Hat World - Internet Marketing Forum
    home search help facebook twitter

Gray Hat World - Internet Marketing Forum » General Computer Discussion » Programing » Visual Basic & C# v
Pages (2): 1 2 Next »
» Make an Email bomber / Spammer in 5 mins with VB 2008 (tutorial)
Current time: 05-21-2012, 12:24 PM Hello There, Guest! (Login — Register)

Register for full access and no ads



Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Threaded Mode | Linear Mode
Make an Email bomber / Spammer in 5 mins with VB 2008 (tutorial)
08-20-2009, 05:50 PM
Post: #1
Macdonjo Offline
Administrator
*******
Administrators
Posts: 1,411
Joined: Jul 2009
Reputation: 5
Experience: 12113
Diamond Member
Make an Email bomber / Spammer in 5 mins with VB 2008 (tutorial)
Credits: nathan72389

add 3 buttons
text/name
----------------
start / startbtn
stop / stopbtn
exit / exitbtn


add 5 textboxes
text/name
-----------------
gmail username / usernamebox
gmail password / passwordbox
to: / tobox
subject / subjectbox
message / messagebox ***make this one "multiline"***

add 1 timer
--------------------------

add 1 label
text/name
--------------------
0 / label1 ***that is the number zero not the letter o***


You should now have something like this:
[Image: layoutj.gif]

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:
[Image: 1stcodeview.gif]

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:
[Image: fullcode.gif]

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!!!

Have a nice day.

Please check the Announcements and News section of the forum, there are great events and important news waiting for you.

Please register and check the site regularly for updates. Please bookmark us! Thank-you very much!
Find all posts by this user
Quote this message in a reply
11-26-2009, 07:51 PM
Post: #2
evilalex Offline
I <3 Money
*****
VIP
Posts: 46
Joined: Aug 2009
Reputation: 2
Experience: 379
RE: Make an Email bomber / Spammer in 5 mins with VB 2008 (tutorial)
thanks for this

[Image: 2ugh0gp.png]
Selling many, many steams. PM me.
Find all posts by this user
Quote this message in a reply
12-22-2009, 04:06 AM
Post: #3
JettyZ Offline
Litte Baby
Posts: 23
Joined: Nov 2009
Reputation: 0
Experience: 36
RE: Make an Email bomber / Spammer in 5 mins with VB 2008 (tutorial)
A first chance exception of type 'System.Net.Mail.SmtpException' occurred in System.dll
Error.
Find all posts by this user
Quote this message in a reply
08-14-2010, 04:36 PM
Post: #4
frozenangel Offline
Litte Baby
Posts: 52
Joined: Jun 2010
Reputation: 0
Experience: 562
RE: Make an Email bomber / Spammer in 5 mins with VB 2008 (tutorial)
wow thnks a lot macc.... any version of vb will work or do i need a specific one ?
Find all posts by this user
Quote this message in a reply
« Next Oldest | Next Newest »
Post Reply 


  • View a Printable Version
  • Send this Thread to a Friend
  • Subscribe to this thread
Forum Jump:


User(s) browsing this thread: 1 Guest(s)

Contact Us | Gray Hat World - Internet Marketing Forum | Return to Top | Return to Content | Lite (Archive) Mode | RSS Syndication

Powered By MyBB, © 2002-2012 MyBB Group.
Theme By GFX Palace.