Results 1 to 4 of 4

Thread: KeyLogger

  1. #1

    Thread Starter
    Member
    Join Date
    Dec 2018
    Posts
    61

    KeyLogger

    Hi guys! How should I make a fast keylogger? e.g I've tried this method, but it seems like too slow, you know why. A fast tiping person would defeat it Any suggestions?? Thank you!!
    Code:
    Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Integer) As Short
    For i = 1 To 255
    
                Dim intKey = 0
                intKey = GetAsyncKeyState(i)
    
                If intKey = -32767 Then
    
                    RichTextBox1.Text = RichTextBox1.Text + Chr(i)
    
                End If
    
            Next i

  2. #2
    Wall Poster TysonLPrice's Avatar
    Join Date
    Sep 2002
    Location
    Columbus, Ohio
    Posts
    3,835

    Re: KeyLogger

    Very few members here will answer a post like this. It violates the Acceptable Use Policy of this forum.
    Please remember next time...elections matter!

  3. #3
    Fanatic Member kpmc's Avatar
    Join Date
    Sep 2017
    Posts
    1,012

    Re: KeyLogger

    I reckon zero members would assist you

  4. #4
    Super Moderator FunkyDexter's Avatar
    Join Date
    Apr 2005
    Location
    An obscure body in the SK system. The inhabitants call it Earth
    Posts
    7,902

    Re: KeyLogger

    Indeed. Thread closed.
    The best argument against democracy is a five minute conversation with the average voter - Winston Churchill

    Hadoop actually sounds more like the way they greet each other in Yorkshire - Inferrd

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width