Sabtu, 17 April 2010


When you are done with this tutorial you will be able to Make and Use a keylogger that is close to fully undetectable, without the victim getting suspicious. You will be able to keylog just about anyone.

This Guide will be split into 2 parts:
1. Writing your own undetectable keylogger
- The language
- Logging and storing
- Uploading logs
2. Setting it up to be un-suspicious and trustworthy
- Binding with other files
- Making sure its existence is hidden

Before we begin I want to point out that this keylogger is NOT perfect.
It will be unable to record some symbols
It will occasionally rearrange a letter with one another if the user types fast
But the passwords should easily get through.

WRITING A KEYLOGGER !

In this guide we will be using Microsoft Visual Basic 6.0 (vb6 for short)
If you do not know/have this, dont leave just yet.
Reading this guide its not "Necessary" to have vb6 knowledge (highly recommended tho)
Download VB6 now, below



Open up VB6 and choose standard EXE.

Put on your form:
3 timers
1 label

Image


Double-click your form (design) and you see the source of our keylogger, almost empty at this point.

Image


Go back to the design and set properties for the form
Set the form name to a few random letters (title doesnt matter)
Set Visible = false
Set ShowInTaskbar = false
This should make it invisible from the user.

Image