Would you like to react to this message? Create an account in a few clicks or log in to continue.



 
HomePortalSearchLatest imagesRegisterLog in

 

 Basic Keylogger Source Code

Go down 
AuthorMessage
jahnjhan
Administrator
Administrator
jahnjhan


Posts : 53
Join date : 2012-01-29
Age : 26
Location : Batangas

Basic Keylogger Source Code Empty
PostSubject: Basic Keylogger Source Code   Basic Keylogger Source Code EmptySun 29 Jan - 13:23

This tutorial will teach you to create a keylogger in c++ using vs 2008.
It can also be done in dev-c++, codegear c++ builder.
This keylogger wil save a log of the keys that are pressed on your HD.

Note: This tutorial is for educational purpose only.
Only put the keylogger on a computer where you got permission for.
___________________________________________________________

Lets get started.
++++++++++++++++++

First we need to create a new project.
Click on 'File' > 'New' > 'Project'.
Now choose 'Win32 Console Application' and choose for name "Keylogger".


If you get the 'Win32 Application Wizzard' click on 'Next' and then select 'Empty project' under 'Additional options' and click on 'Finish'.

You should have a empty project now.
Now we will add a .cpp file.

Right click on 'Source Files' and take 'Add' > 'New Item'.


Now take 'C++ File(.cpp)' and name it Keylogger.

then click 'Add'.

Now open Keylogger.cpp and Write this in it:
Spoiler:

Now Write This :
Spoiler:

Now we need to make a main function.(The main function will be the first that will be executed.)
Spoiler:

Under that we will write our keylogger so it will also recognize special keys like the 'spacebar' and stuff. If you want to add some yourself here is a site where you can look up the ascii table. [You must be registered and logged in to see this link.]
int Save (int key_stroke, char *file) // Here we define our save function that we declared before.

Spoiler:

Now we going to add Stealth to it. Under the latest code add again:
Spoiler:

Now write:

Spoiler:

Now, if you've done everything right, your full source code should look like below:
Spoiler:
Back to top Go down
 
Basic Keylogger Source Code
Back to top 
Page 1 of 1
 Similar topics
-
»  Basic Decryption Tutorial
» Microsoft Visual Basic 2010 - Trial edition

Permissions in this forum:You cannot reply to topics in this forum
 :: Discussions :: Coding and Programming-
Jump to: