You are viewing our Forum Archives. To view or take place in current topics click here.
How to make your OWN E-mail spammer! *LEGIT*
Posted:

How to make your OWN E-mail spammer! *LEGIT*Posted:

TTG_Hollywood
  • Powerhouse
Status: Offline
Joined: Dec 15, 201013Year Member
Posts: 447
Reputation Power: 18
Status: Offline
Joined: Dec 15, 201013Year Member
Posts: 447
Reputation Power: 18
Hey guys I did this very easily and I'm sure if you just follow this, you can to!


****THIS IS DONE IN VISUAL BASIC****


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 that looks like this:


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


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.

If you think this is some type of phisher, you are stupid, the code is all above for you to look at!

If you want a better tut just ask!
-This took a while to set up.
~Hollywood
#2. Posted:
smelku
  • TTG Contender
Status: Offline
Joined: Jan 23, 201113Year Member
Posts: 3,211
Reputation Power: 154
Status: Offline
Joined: Jan 23, 201113Year Member
Posts: 3,211
Reputation Power: 154
Good post bro! Maybe make a video TuT of it? It'll probably own you a lot of rep!
#3. Posted:
TTG_Hollywood
  • Powerhouse
Status: Offline
Joined: Dec 15, 201013Year Member
Posts: 447
Reputation Power: 18
Status: Offline
Joined: Dec 15, 201013Year Member
Posts: 447
Reputation Power: 18
TTG-Toasty wrote Good post bro! Maybe make a video TuT of it? It'll probably own you a lot of rep!


I will tomorrow...thanks for the input though.
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.