forked from cuckoosandbox/cuckoomon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hook_window.c
94 lines (84 loc) · 2.98 KB
/
hook_window.c
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
/*
Cuckoo Sandbox - Automated Malware Analysis
Copyright (C) 2010-2014 Cuckoo Sandbox Developers
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <windows.h>
#include "hooking.h"
#include "ntapi.h"
#include "log.h"
static IS_SUCCESS_HWND();
HOOKDEF(HWND, WINAPI, FindWindowA,
__in_opt LPCTSTR lpClassName,
__in_opt LPCTSTR lpWindowName
) {
// The atom must be in the low-order word of lpClassName;
// the high-order word must be zero (from MSDN documentation.)
HWND ret = Old_FindWindowA(lpClassName, lpWindowName);
if(((DWORD_PTR) lpClassName & 0xffff) == (DWORD_PTR) lpClassName) {
LOQ("ls", "ClassName", lpClassName, "WindowName", lpWindowName);
}
else {
LOQ("ss", "ClassName", lpClassName, "WindowName", lpWindowName);
}
return ret;
}
HOOKDEF(HWND, WINAPI, FindWindowW,
__in_opt LPWSTR lpClassName,
__in_opt LPWSTR lpWindowName
) {
HWND ret = Old_FindWindowW(lpClassName, lpWindowName);
if(((DWORD_PTR) lpClassName & 0xffff) == (DWORD_PTR) lpClassName) {
LOQ("lu", "ClassName", lpClassName, "WindowName", lpWindowName);
}
else {
LOQ("uu", "ClassName", lpClassName, "WindowName", lpWindowName);
}
return ret;
}
HOOKDEF(HWND, WINAPI, FindWindowExA,
__in_opt HWND hwndParent,
__in_opt HWND hwndChildAfter,
__in_opt LPCTSTR lpszClass,
__in_opt LPCTSTR lpszWindow
) {
HWND ret = Old_FindWindowExA(hwndParent, hwndChildAfter, lpszClass,
lpszWindow);
// lpszClass can be one of the predefined window controls.. which lay in
// the 0..ffff range
if(((DWORD_PTR) lpszClass & 0xffff) == (DWORD_PTR) lpszClass) {
LOQ("ls", "ClassName", lpszClass, "WindowName", lpszWindow);
}
else {
LOQ2("ss", "ClassName", lpszClass, "WindowName", lpszWindow);
}
return ret;
}
HOOKDEF(HWND, WINAPI, FindWindowExW,
__in_opt HWND hwndParent,
__in_opt HWND hwndChildAfter,
__in_opt LPWSTR lpszClass,
__in_opt LPWSTR lpszWindow
) {
HWND ret = Old_FindWindowExW(hwndParent, hwndChildAfter, lpszClass,
lpszWindow);
// lpszClass can be one of the predefined window controls.. which lay in
// the 0..ffff range
if(((DWORD_PTR) lpszClass & 0xffff) == (DWORD_PTR) lpszClass) {
LOQ("lu", "ClassName", lpszClass, "WindowName", lpszWindow);
}
else {
LOQ2("uu", "ClassName", lpszClass, "WindowName", lpszWindow);
}
return ret;
}