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
|
#include "EfiDSEFix.h"
#include <ntstatus.h>
static
VOID
PrintUsage(
_In_ PCWCHAR ProgramName
)
{
const BOOLEAN Win8OrHigher = (RtlNtMajorVersion() >= 6 && RtlNtMinorVersion() >= 2) || RtlNtMajorVersion() > 6;
const PCWCHAR CiOptionsName = Win8OrHigher ? L"g_CiOptions" : L"g_CiEnabled";
Printf(L"\nUsage: %ls [COMMAND]\n\n"
L"Commands:\n\n"
L"-c, --check%17lsTest backdoor hook\n"
L"-r, --read%18lsRead current %ls value\n"
L"-d, --disable%15lsDisable DSE\n"
L"-e, --enable%ls%2ls(Re)enable DSE\n"
L"-i, --info%18lsDump system info\n",
ProgramName, L"", L"",
CiOptionsName, L"",
(Win8OrHigher ? L" [g_CiOptions]" : L" "),
L"", L"");
}
int wmain(int argc, wchar_t** argv)
{
NT_ASSERT(argc != 0);
if (argc == 1 || argc > 3 ||
(argc == 3 && wcstoul(argv[2], nullptr, 16) == 0))
{
// Print help text
PrintUsage(argv[0]);
return 0;
}
// Parse command line params
const BOOLEAN Win8OrHigher = (RtlNtMajorVersion() >= 6 && RtlNtMinorVersion() >= 2) || RtlNtMajorVersion() > 6;
const ULONG EnabledCiOptionsValue = Win8OrHigher ? 0x6 : CODEINTEGRITY_OPTION_ENABLED;
const PCWCHAR CiOptionsName = Win8OrHigher ? L"g_CiOptions" : L"g_CiEnabled";
ULONG CiOptionsValue = 0;
BOOLEAN ReadOnly = FALSE;
if (wcsncmp(argv[1], L"-c", sizeof(L"-c") / sizeof(WCHAR) - 1) == 0 ||
wcsncmp(argv[1], L"--check", sizeof(L"--check") / sizeof(WCHAR) - 1) == 0)
{
Printf(L"Checking for working EFI SetVariable() backdoor...\n");
const NTSTATUS Status = TestSetVariableHook();
if (NT_SUCCESS(Status)) // Any errors have already been printed
Printf(L"Success!\n");
return Status;
}
if (wcsncmp(argv[1], L"-r", sizeof(L"-r") / sizeof(WCHAR) - 1) == 0 ||
wcsncmp(argv[1], L"--read", sizeof(L"--read") / sizeof(WCHAR) - 1) == 0)
{
CiOptionsValue = 0;
ReadOnly = TRUE;
Printf(L"Querying %ls value...\n", CiOptionsName);
}
else if (wcsncmp(argv[1], L"-d", sizeof(L"-d") / sizeof(WCHAR) - 1) == 0 ||
wcsncmp(argv[1], L"--disable", sizeof(L"--disable") / sizeof(WCHAR) - 1) == 0)
{
CiOptionsValue = 0;
Printf(L"Disabling DSE...\n");
}
else if (wcsncmp(argv[1], L"-e", sizeof(L"-e") / sizeof(WCHAR) - 1) == 0 ||
wcsncmp(argv[1], L"--enable", sizeof(L"--enable") / sizeof(WCHAR) - 1) == 0)
{
if (Win8OrHigher)
{
CiOptionsValue = argc == 3 ? wcstoul(argv[2], nullptr, 16) : EnabledCiOptionsValue;
Printf(L"(Re)enabling DSE [%ls value = 0x%lX]...\n", CiOptionsName, CiOptionsValue);
}
else
{
CiOptionsValue = EnabledCiOptionsValue;
Printf(L"(Re)enabling DSE...\n");
}
}
else if (wcsncmp(argv[1], L"-i", sizeof(L"-i") / sizeof(WCHAR) - 1) == 0 ||
wcsncmp(argv[1], L"--info", sizeof(L"--info") / sizeof(WCHAR) - 1) == 0)
{
return DumpSystemInformation();
}
// Trigger EFI driver exploit and write new value to g_CiOptions/g_CiEnabled
ULONG OldCiOptionsValue;
const NTSTATUS Status = AdjustCiOptions(CiOptionsValue, &OldCiOptionsValue, ReadOnly);
// Print result
if (!NT_SUCCESS(Status))
{
Printf(L"AdjustCiOptions failed: %08X\n", Status);
}
else
{
if (ReadOnly)
Printf(L"Success.");
else
Printf(L"Successfully %ls DSE. Original", CiOptionsValue == 0 ? L"disabled" : L"(re)enabled");
Printf(L" %ls value: 0x%lX\n", CiOptionsName, OldCiOptionsValue);
}
return Status;
}
DECLSPEC_NOINLINE
static
VOID
ParseCommandLine(
_In_ PWCHAR CommandLine,
_Out_opt_ PWCHAR* Argv,
_Out_opt_ PWCHAR Arguments,
_Out_ PULONG Argc,
_Out_ PULONG NumChars
)
{
*NumChars = 0;
*Argc = 1;
// Copy the executable name and and count bytes
PWCHAR p = CommandLine;
if (Argv != nullptr)
*Argv++ = Arguments;
// Handle quoted executable names
BOOLEAN InQuotes = FALSE;
WCHAR c;
do
{
if (*p == '"')
{
InQuotes = !InQuotes;
c = *p++;
continue;
}
++*NumChars;
if (Arguments != nullptr)
*Arguments++ = *p;
c = *p++;
} while (c != '\0' && (InQuotes || (c != ' ' && c != '\t')));
if (c == '\0')
--p;
else if (Arguments != nullptr)
*(Arguments - 1) = L'\0';
// Iterate over the arguments
InQuotes = FALSE;
for (; ; ++*NumChars)
{
if (*p != '\0')
{
while (*p == ' ' || *p == '\t')
++p;
}
if (*p == '\0')
break; // End of arguments
if (Argv != nullptr)
*Argv++ = Arguments;
++*Argc;
// Scan one argument
for (; ; ++p)
{
BOOLEAN CopyChar = TRUE;
ULONG NumSlashes = 0;
while (*p == '\\')
{
// Count the number of slashes
++p;
++NumSlashes;
}
if (*p == '"')
{
// If 2N backslashes before: start/end a quote. Otherwise copy literally
if ((NumSlashes & 1) == 0)
{
if (InQuotes && p[1] == '"')
++p; // Double quote inside a quoted string
else
{
// Skip first quote and copy second
CopyChar = FALSE; // Don't copy quote
InQuotes = !InQuotes;
}
}
NumSlashes >>= 1;
}
// Copy slashes
while (NumSlashes--)
{
if (Arguments != nullptr)
*Arguments++ = '\\';
++*NumChars;
}
// If we're at the end of the argument, go to the next
if (*p == '\0' || (!InQuotes && (*p == ' ' || *p == '\t')))
break;
// Copy character into argument
if (CopyChar)
{
if (Arguments != nullptr)
*Arguments++ = *p;
++*NumChars;
}
}
if (Arguments != nullptr)
*Arguments++ = L'\0';
}
}
NTSTATUS
NTAPI
NtProcessStartupW(
_In_ PPEB Peb
)
{
// On Windows XP (heh...) rcx does not contain a PEB pointer, but garbage
Peb = Peb != nullptr ? NtCurrentPeb() : NtCurrentTeb()->ProcessEnvironmentBlock; // And this turd is to get Resharper to shut up about assigning to Peb before reading from it. Note LHS == RHS
// Get the command line from the startup parameters. If there isn't one, use the executable name
PRTL_USER_PROCESS_PARAMETERS Params = RtlNormalizeProcessParams(Peb->ProcessParameters);
const PWCHAR CommandLineBuffer = Params->CommandLine.Buffer == nullptr || Params->CommandLine.Buffer[0] == L'\0'
? Params->ImagePathName.Buffer
: Params->CommandLine.Buffer;
// Count the number of arguments and characters excluding quotes
ULONG Argc, NumChars;
ParseCommandLine(CommandLineBuffer,
nullptr,
nullptr,
&Argc,
&NumChars);
// Allocate a buffer for the arguments and a pointer array
const ULONG ArgumentArraySize = (Argc + 1) * sizeof(PVOID);
PWCHAR *Argv = static_cast<PWCHAR*>(
RtlAllocateHeap(RtlProcessHeap(),
HEAP_ZERO_MEMORY,
ArgumentArraySize + NumChars * sizeof(WCHAR)));
if (Argv == nullptr)
return NtTerminateProcess(NtCurrentProcess, STATUS_NO_MEMORY);
// Copy the command line arguments
ParseCommandLine(CommandLineBuffer,
Argv,
reinterpret_cast<PWCHAR>(&Argv[Argc + 1]),
&Argc,
&NumChars);
// Call the main function and terminate with the exit status
const NTSTATUS Status = wmain(static_cast<int>(Argc), Argv);
return NtTerminateProcess(NtCurrentProcess, Status);
}
|