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
|
#include <ntddk.h>
#include <DriverThread.hpp>
#include "memory.hpp"
using namespace DriverThread;
static Thread thread;
extern "C" {
DRIVER_INITIALIZE DriverEntry;
DRIVER_UNLOAD DriverUnload;
NTSTATUS DriverEntry(_In_ struct _DRIVER_OBJECT *DriverObject,
_In_ PUNICODE_STRING RegistryPath) {
UNREFERENCED_PARAMETER(DriverObject);
UNREFERENCED_PARAMETER(RegistryPath);
DbgPrint("%s\n", "Starting thread..");
auto args = eastl::make_shared<ThreadArgs>();
thread.Start(
[](eastl::shared_ptr<ThreadArgs> args) {
UNREFERENCED_PARAMETER(args);
const auto &procs = ::GetProcesses();
DbgPrint("Got %zu processes on this machine\n", procs.size());
const wchar_t targetProcess[] = L"explorer.exe";
const auto &found = eastl::find_if(
procs.begin(), procs.end(), [&targetProcess](const auto &item) {
if (item.ProcessName == targetProcess)
return true;
return false;
});
if (found == procs.end()) {
DbgPrint("Process not found: '%ws'\n", targetProcess);
return STATUS_SUCCESS;
}
DbgPrint("Process '%ws' pid: %zu\n", targetProcess,
found->UniqueProcessId);
auto pid = reinterpret_cast<HANDLE>(found->UniqueProcessId);
PEPROCESS pep;
HANDLE obj;
if (NT_SUCCESS(::OpenProcess(pid, &pep, &obj))) {
DbgPrint("Opened process with pid 0x%X\n", pid);
const auto &mods = ::GetModules(pep, FALSE);
DbgPrint("Got %zu modules for '%ws'\n", mods.size(), targetProcess);
for (const auto &mod : mods) {
DbgPrint("Module: '%ws'\n", mod.BaseDllName.c_str());
if (mod.BaseDllName == L"Explorer.EXE") {
DbgPrint("Found explorer module, overwriting 'MZ' with 'FU'..\n");
UCHAR headerBuf[2] = {0xFF, 0xFF};
SIZE_T headerOut = sizeof(headerBuf);
NTSTATUS ret;
ULONG oldProt = 0;
ret =
::ReadVirtualMemory(pep, mod.DllBase, headerBuf, &headerOut);
if (!NT_SUCCESS(ret)) {
DbgPrint("::ReadVirtualMemory failed with: 0x%lX\n", ret);
} else {
DbgPrint("First two bytes of '%ws': %c%c\n", targetProcess,
headerBuf[0], headerBuf[1]);
}
ret = ::ProtectVirtualMemory(pep, mod.DllBase, 0x2,
PAGE_READWRITE, &oldProt);
if (!NT_SUCCESS(ret)) {
DbgPrint("::ProtectVirtualMemory failed with: 0x%lx\n", ret);
} else {
DbgPrint("Old page protection (DosHeader): %lu\n", oldProt);
}
headerBuf[0] = 0x41;
headerBuf[1] = 0x41;
headerOut = sizeof(headerBuf);
ret =
::WriteVirtualMemory(pep, headerBuf, mod.DllBase, &headerOut);
if (!NT_SUCCESS(ret)) {
DbgPrint("::WriteVirtualMemory failed with: 0x%lx\n", ret);
}
ret =
::RestoreProtectVirtualMemory(pep, mod.DllBase, 0x2, oldProt);
if (!NT_SUCCESS(ret)) {
DbgPrint("::RestoreProtectVirtualMemory failed with: 0x%lx\n",
ret);
}
headerBuf[0] = 0x00;
headerBuf[0] = 0x00;
headerOut = sizeof(headerBuf);
ret =
::ReadVirtualMemory(pep, mod.DllBase, headerBuf, &headerOut);
if (!NT_SUCCESS(ret)) {
DbgPrint("::ReadVirtualMemory failed with: 0x%lX\n", ret);
} else {
DbgPrint("First two bytes of '%ws': %c%c\n", targetProcess,
headerBuf[0], headerBuf[1]);
}
ret = ::ProtectVirtualMemory(pep, mod.DllBase, 0x2,
PAGE_READWRITE, &oldProt);
if (!NT_SUCCESS(ret)) {
DbgPrint("::ProtectVirtualMemory failed with: 0x%lx\n", ret);
} else {
DbgPrint("Old page protection (DosHeader): %lu\n", oldProt);
}
headerBuf[0] = 'M';
headerBuf[1] = 'Z';
headerOut = sizeof(headerBuf);
ret =
::WriteVirtualMemory(pep, headerBuf, mod.DllBase, &headerOut);
if (!NT_SUCCESS(ret)) {
DbgPrint("::WriteVirtualMemory failed with: 0x%lx\n", ret);
}
ret =
::RestoreProtectVirtualMemory(pep, mod.DllBase, 0x2, oldProt);
if (!NT_SUCCESS(ret)) {
DbgPrint("::RestoreProtectVirtualMemory failed with: 0x%lx\n",
ret);
}
}
{
UCHAR headerBuf[4];
SIZE_T headerOut = sizeof(headerBuf);
NTSTATUS headerStatus =
::ReadVirtualMemory(pep, mod.DllBase, headerBuf, &headerOut);
if (!NT_SUCCESS(headerStatus) || headerOut != sizeof(headerBuf)) {
DbgPrint(
"Could not read the first 4 bytes of the image, got %zu "
"bytes: 0x%X\n",
headerOut, headerStatus);
} else {
if (headerBuf[0] != 0x4D || headerBuf[1] != 0x5A ||
headerBuf[2] != 0x90 || headerBuf[3] != 0x00) {
DbgPrint("Strange, image does not seem to be a PE, first 4 "
"bytes: %c%c 0x%X 0x%X\n",
headerBuf[0], headerBuf[1], headerBuf[2],
headerBuf[3]);
} else
DbgPrint("%s\n", "Explorer.EXE DosHeader restored..");
}
}
}
const auto &pages = ::GetPages(obj, 64);
DbgPrint("Got %zu pages\n", pages.size());
for (const auto &page : pages) {
DbgPrint("%s\n", page.toString().c_str());
}
::CloseProcess(&pep, &obj);
}
return STATUS_SUCCESS;
},
args);
return STATUS_SUCCESS;
}
VOID DriverUnload(_In_ struct _DRIVER_OBJECT *DriverObject) {
UNREFERENCED_PARAMETER(DriverObject);
DbgPrint("%s\n", "Waiting for thread termination..");
thread.WaitForTermination();
}
}
|