-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcmdlog.cpp
529 lines (468 loc) · 12.5 KB
/
cmdlog.cpp
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
/* Detours DLL for hooking and logging console I/O for 32- and 64-bit cmd.exe
* and powershell.exe */
#include <stdio.h>
#include <windows.h>
#include <stdarg.h>
#include "detours.h"
#include "logging.h"
#include "cmdlog_defs.h"
#pragma comment(lib, "iphlpapi.lib")
#define NUM_DLL_NAMES 1
///////////////////////////////////////////////////////////////////////////////
// Types
///////////////////////////////////////////////////////////////////////////////
enum CmdLogLabelState {
cllsLabel,
cllsNoLabel,
};
enum CmdLogRWConOutState {
cl_rwco_neutral,
cl_rwco_entering,
cl_rwco_entered,
};
///////////////////////////////////////////////////////////////////////////////
// Prototypes
///////////////////////////////////////////////////////////////////////////////
void RWConOutInit();
void RWConOutCopyEntry(CHAR_INFO *lpBuffer, COORD dwBufferSize);
PWCHAR RWConOutGetLast();
void RWConOutClearBuf();
BOOL __stdcall HookCreateProcessW(LPCWSTR lpApplicationName,
LPWSTR lpCommandLine,
LPSECURITY_ATTRIBUTES lpProcessAttributes,
LPSECURITY_ATTRIBUTES lpThreadAttributes,
BOOL bInheritHandles,
DWORD dwCreationFlags,
LPVOID lpEnvironment,
LPCWSTR lpCurrentDirectory,
LPSTARTUPINFOW lpStartupInfo,
LPPROCESS_INFORMATION lpProcessInformation
);
BOOL __stdcall HookCreateProcessA(LPCSTR lpApplicationName,
LPSTR lpCommandLine,
LPSECURITY_ATTRIBUTES lpProcessAttributes,
LPSECURITY_ATTRIBUTES lpThreadAttributes,
BOOL bInheritHandles,
DWORD dwCreationFlags,
LPVOID lpEnvironment,
LPCSTR lpCurrentDirectory,
LPSTARTUPINFO lpStartupInfo,
LPPROCESS_INFORMATION lpProcessInformation
);
BOOL WINAPI LogReadConsoleW(
HANDLE hConsoleInput,
PWCHAR lpBuffer,
DWORD nNumberOfCharsToRead,
LPDWORD lpNumberOfCharsRead,
PCONSOLE_READCONSOLE_CONTROL pInputControl
);
BOOL WINAPI LogWriteConsoleW(
HANDLE hConsoleOutput,
const VOID *lpBuffer,
DWORD nNumberOfCharsToWrite,
LPDWORD lpNumberOfCharsWritten,
LPVOID lpReserved
);
BOOL WINAPI LogReadConsoleInputW(
HANDLE hConsoleInput,
PINPUT_RECORD lpBuffer,
DWORD nLength,
LPDWORD lpNumberOfEventsRead
);
BOOL WINAPI LogWriteConsoleOutputW(
HANDLE hConsoleOutput,
CHAR_INFO* lpBuffer,
COORD dwBufferSize,
COORD dwBufferCoord,
PSMALL_RECT lpWriteRegion
);
///////////////////////////////////////////////////////////////////////////////
// Data
///////////////////////////////////////////////////////////////////////////////
BOOL CfgLogCreatedProcesses = FALSE;
/* Read/write console output state and buffer control */
struct {
CmdLogRWConOutState State;
COORD wbuf_size;
WCHAR wbuf[10000 * 512];
} g_conout;
enum CmdLogLabelState LabelState = cllsLabel;
static CHAR dllname[MAX_PATH];
static CHAR exename[MAX_PATH];
LPCSTR dllnamesA[NUM_DLL_NAMES] = {
dllname,
};
BOOL (__stdcall * pCreateProcessA)(
LPCSTR a0,
LPSTR a1,
LPSECURITY_ATTRIBUTES a2,
LPSECURITY_ATTRIBUTES a3,
BOOL a4,
DWORD a5,
LPVOID a6,
LPCSTR a7,
LPSTARTUPINFOA a8,
LPPROCESS_INFORMATION a9
) = CreateProcessA;
BOOL (__stdcall * pCreateProcessW)(
LPCWSTR a0,
LPWSTR a1,
LPSECURITY_ATTRIBUTES a2,
LPSECURITY_ATTRIBUTES a3,
BOOL a4,
DWORD a5,
LPVOID a6,
LPCWSTR a7,
LPSTARTUPINFOW a8,
LPPROCESS_INFORMATION a9
) = CreateProcessW;
static BOOL (WINAPI *pReadConsoleW)(
HANDLE hConsoleInput,
LPVOID lpBuffer,
DWORD nNumberOfCharsToRead,
LPDWORD lpNumberOfCharsRead,
PCONSOLE_READCONSOLE_CONTROL pInputControl
) = ReadConsoleW;
static BOOL (WINAPI *pWriteConsoleW)(
HANDLE hConsoleOutput,
const VOID *lpBuffer,
DWORD nNumberOfCharsToWrite,
LPDWORD lpNumberOfCharsWritten,
LPVOID lpReserved
) = WriteConsoleW;
static BOOL (WINAPI * pReadConsoleInputW)(
HANDLE a0,
PINPUT_RECORD a1,
DWORD a2,
LPDWORD a3) = ReadConsoleInputW;
static BOOL (WINAPI * pWriteConsoleOutputW)(HANDLE a0,
CONST CHAR_INFO* a1,
COORD a2,
COORD a3,
PSMALL_RECT a4) = WriteConsoleOutputW;
///////////////////////////////////////////////////////////////////////////////
// Definitions
///////////////////////////////////////////////////////////////////////////////
/* Adapted from Detours sample traceapi.cpp */
BOOL __stdcall HookCreateProcessA(LPCSTR lpApplicationName,
LPSTR lpCommandLine,
LPSECURITY_ATTRIBUTES lpProcessAttributes,
LPSECURITY_ATTRIBUTES lpThreadAttributes,
BOOL bInheritHandles,
DWORD dwCreationFlags,
LPVOID lpEnvironment,
LPCSTR lpCurrentDirectory,
LPSTARTUPINFO lpStartupInfo,
LPPROCESS_INFORMATION lpProcessInformation
)
{
if (CfgLogCreatedProcesses) {
LogOutput(NULL, "CreateProcessA(%hs,%hs,%p,%p,%p,%p,%p,%hs,%p,%p)\r\n",
lpApplicationName,
lpCommandLine,
lpProcessAttributes,
lpThreadAttributes,
bInheritHandles,
dwCreationFlags,
lpEnvironment,
lpCurrentDirectory,
lpStartupInfo,
lpProcessInformation
);
LogOutput(
NULL,
BAR
);
}
PROCESS_INFORMATION procInfo;
if (lpProcessInformation == NULL) {
lpProcessInformation= &procInfo;
ZeroMemory(&procInfo, sizeof(procInfo));
}
BOOL rv = 0;
__try {
rv = DetourCreateProcessWithDllsA(lpApplicationName,
lpCommandLine,
lpProcessAttributes,
lpThreadAttributes,
bInheritHandles,
dwCreationFlags,
lpEnvironment,
lpCurrentDirectory,
lpStartupInfo,
lpProcessInformation,
NUM_DLL_NAMES,
dllnamesA,
pCreateProcessA
);
} __finally { };
return rv;
}
/* Adapted from Detours sample traceapi.cpp */
BOOL
__stdcall
HookCreateProcessW(LPCWSTR lpApplicationName,
LPWSTR lpCommandLine,
LPSECURITY_ATTRIBUTES lpProcessAttributes,
LPSECURITY_ATTRIBUTES lpThreadAttributes,
BOOL bInheritHandles,
DWORD dwCreationFlags,
LPVOID lpEnvironment,
LPCWSTR lpCurrentDirectory,
LPSTARTUPINFOW lpStartupInfo,
LPPROCESS_INFORMATION lpProcessInformation
)
{
if (CfgLogCreatedProcesses) {
LogOutput(NULL, "CreateProcessW(%ls,%ls,%p,%p,%p,%p,%p,%ls,%p,%p)\r\n",
lpApplicationName,
lpCommandLine,
lpProcessAttributes,
lpThreadAttributes,
bInheritHandles,
dwCreationFlags,
lpEnvironment,
lpCurrentDirectory,
lpStartupInfo,
lpProcessInformation
);
LogOutput(
NULL,
"%s",
BAR
);
}
PROCESS_INFORMATION procInfo;
if (lpProcessInformation == NULL) {
lpProcessInformation= &procInfo;
ZeroMemory(&procInfo, sizeof(procInfo));
}
BOOL rv = 0;
__try {
rv = DetourCreateProcessWithDllsW(lpApplicationName,
lpCommandLine,
lpProcessAttributes,
lpThreadAttributes,
bInheritHandles,
dwCreationFlags,
lpEnvironment,
lpCurrentDirectory,
lpStartupInfo,
lpProcessInformation,
NUM_DLL_NAMES,
dllnamesA,
pCreateProcessW
);
} __finally { };
return rv;
}
BOOL WINAPI
LogReadConsoleW(
HANDLE hConsoleInput,
PWCHAR lpBuffer,
DWORD nNumberOfCharsToRead,
LPDWORD lpNumberOfCharsRead,
PCONSOLE_READCONSOLE_CONTROL pInputControl
)
{
BOOL ret = pReadConsoleW(
hConsoleInput,
lpBuffer,
nNumberOfCharsToRead,
lpNumberOfCharsRead,
pInputControl
);
/* NULL-terminate the input buffer as a convenience for myself, provided it
* doesn't exceed caller-specified bounds */
if (*lpNumberOfCharsRead <= nNumberOfCharsToRead) {
lpBuffer[*lpNumberOfCharsRead] = '\0';
}
/* TODO: Replace this crap code with more accurate parsing */
if (!wcsncmp((const wchar_t *)lpBuffer, CMD_QUERY_STATUS_W,
wcslen(CMD_QUERY_STATUS_W)))
{
QueryStatus();
}
LogOutput(NULL, "%S", lpBuffer);
LabelState = cllsLabel;
LogInfoStampToFile(NULL);
return ret;
}
BOOL WINAPI
LogWriteConsoleW(
HANDLE hConsoleOutput,
const VOID *lpBuffer,
DWORD nNumberOfCharsToWrite,
LPDWORD lpNumberOfCharsWritten,
LPVOID lpReserved
)
{
if (cllsLabel == LabelState) {
// Built to precede every series of output lines with an info stamp,
// but it was retired in favor of post-ReadConsoleW info stamp. Leaving
// the state maintenance intact in case the desire arises to use it
// again.
LabelState = cllsNoLabel;
}
LogOutput(NULL, "%S", lpBuffer);
return pWriteConsoleW(
hConsoleOutput,
lpBuffer,
nNumberOfCharsToWrite,
lpNumberOfCharsWritten,
lpReserved
);
}
BOOL
WINAPI
LogReadConsoleInputW(
HANDLE hConsoleInput,
PINPUT_RECORD lpBuffer,
DWORD nLength,
LPDWORD lpNumberOfEventsRead
)
{
BOOL ret = 0;
PWCHAR entry = NULL;
ret = pReadConsoleInputW(
hConsoleInput,
lpBuffer,
nLength,
lpNumberOfEventsRead
);
/* PowerShell specifically uses buffers of nLength == 1 */
if ((nLength == 1) && lpNumberOfEventsRead && (1 == *lpNumberOfEventsRead))
{
if (lpBuffer[0].EventType == KEY_EVENT) {
if (VK_RETURN == lpBuffer[0].Event.KeyEvent.wVirtualKeyCode) {
entry = RWConOutGetLast();
LogOutput(NULL, "%S\n", entry);
RWConOutClearBuf();
LogInfoStampToFile(NULL);
}
}
}
return ret;
}
BOOL
WINAPI
LogWriteConsoleOutputW(
HANDLE hConsoleOutput,
CHAR_INFO* lpBuffer,
COORD dwBufferSize,
COORD dwBufferCoord,
PSMALL_RECT lpWriteRegion
)
{
BOOL ret = 0;
ret = pWriteConsoleOutputW(
hConsoleOutput,
lpBuffer,
dwBufferSize,
dwBufferCoord,
lpWriteRegion
);
RWConOutCopyEntry(lpBuffer, dwBufferSize);
return ret;
}
void
RWConOutInit()
{
memset(&g_conout, 0, sizeof(g_conout));
g_conout.State = cl_rwco_neutral;
}
void
RWConOutCopyEntry(CHAR_INFO *lpBuffer, COORD dwBufferSize)
{
short x = 0;
short y = 0;
WCHAR c = L'\0';
if ((dwBufferSize.X > 0) && (dwBufferSize.Y > 0)) {
g_conout.State = cl_rwco_entering;
g_conout.wbuf_size = dwBufferSize;
RWConOutClearBuf();
for (y=0; y<dwBufferSize.Y; y++) {
for (x=0; x<dwBufferSize.X; x++) {
c = lpBuffer[y * dwBufferSize.X + x].Char.UnicodeChar;
g_conout.wbuf[y * dwBufferSize.X + x] = c;
}
}
}
}
PWCHAR
RWConOutGetLast()
{
g_conout.State = cl_rwco_entered;
return g_conout.wbuf;
}
void
RWConOutClearBuf()
{
memset(&g_conout.wbuf, 0, sizeof(g_conout.wbuf));
}
///////////////////////////////////////////////////////////////////////////////
// Entry point
///////////////////////////////////////////////////////////////////////////////
BOOL WINAPI DllMain(HINSTANCE hinst, DWORD dwReason, LPVOID reserved)
{
LONG error = NO_ERROR;
DWORD Ret = 0;
UNREFERENCED_PARAMETER(reserved);
// See documentation for DetourCreateProcessWithDlls
if (DetourIsHelperProcess()) {
return TRUE;
}
if (dwReason == DLL_PROCESS_ATTACH) {
DetourRestoreAfterWith();
LogInit();
RWConOutInit();
Ret = GetModuleFileNameA(hinst, dllname, ARRAYSIZE(dllname));
if (Ret == 0) {
error = GetLastError();
LogOutput(
NULL,
"GetModuleFileNameA failed, %d\r\n",
error
);
} else {
Ret = GetModuleFileNameA(NULL, exename, ARRAYSIZE(exename));
if (Ret == 0) {
error = GetLastError();
LogOutput(
NULL,
"GetModuleFileNameA failed, %d\r\n",
error
);
}
}
if (error == NO_ERROR) {
DetourTransactionBegin();
DetourUpdateThread(GetCurrentThread());
DetourAttach(&(PVOID&)pReadConsoleW, LogReadConsoleW);
DetourAttach(&(PVOID&)pWriteConsoleW, LogWriteConsoleW);
DetourAttach(&(PVOID&)pReadConsoleInputW, LogReadConsoleInputW);
DetourAttach(&(PVOID&)pWriteConsoleOutputW, LogWriteConsoleOutputW);
DetourAttach(&(PVOID&)pCreateProcessA, HookCreateProcessA);
DetourAttach(&(PVOID&)pCreateProcessW, HookCreateProcessW);
error = DetourTransactionCommit();
}
if (error != NO_ERROR) {
LogOutput(
NULL,
"Error detouring {Read,Write}ConsoleW(): %d\r\n",
error
);
return FALSE;
}
}
else if (dwReason == DLL_PROCESS_DETACH) {
DetourTransactionBegin();
DetourUpdateThread(GetCurrentThread());
DetourDetach(&(PVOID&)pReadConsoleW, LogReadConsoleW);
DetourDetach(&(PVOID&)pWriteConsoleW, LogWriteConsoleW);
DetourDetach(&(PVOID&)pReadConsoleInputW, LogReadConsoleInputW);
DetourDetach(&(PVOID&)pWriteConsoleOutputW, LogWriteConsoleOutputW);
error = DetourTransactionCommit();
}
return TRUE;
}