-
Notifications
You must be signed in to change notification settings - Fork 0
/
iisRequestDumper.cpp
423 lines (363 loc) · 14.7 KB
/
iisRequestDumper.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
#define _WINSOCKAPI_
#include <windows.h>
#include <sal.h>
#include <httpserv.h>
#include <stdio.h>
#include <string.h>
#include <vector>
char* directory = "c:\\tmp\\iisRequestDumper\\";
struct headerEnumToRealName {
_HTTP_HEADER_ID enumVal;
char* realName;
};
headerEnumToRealName requestHeaderEnumToRealNameMapping[HttpHeaderRequestMaximum] = {
{ HttpHeaderCacheControl, "Cache-Control" },
{ HttpHeaderConnection, "Connection" },
{ HttpHeaderDate, "Date" },
{ HttpHeaderKeepAlive, "Keep-Alive" },
{ HttpHeaderPragma, "Pragma" },
{ HttpHeaderTrailer, "Trailer" },
{ HttpHeaderTransferEncoding, "Transfer-Encoding" },
{ HttpHeaderUpgrade, "Upgrade" },
{ HttpHeaderVia, "Via" },
{ HttpHeaderWarning, "Warning" },
{ HttpHeaderAllow, "Allow" },
{ HttpHeaderContentLength, "Content-Length" },
{ HttpHeaderContentType, "Content-Type" },
{ HttpHeaderContentEncoding, "Content-Encoding" },
{ HttpHeaderContentLanguage, "Content-Language" },
{ HttpHeaderContentLocation, "Content-Location" },
{ HttpHeaderContentMd5, "Content-Md5" },
{ HttpHeaderContentRange, "Content-Range" },
{ HttpHeaderExpires, "Expires" },
{ HttpHeaderLastModified, "Last-Modified" },
{ HttpHeaderAccept, "Accept" },
{ HttpHeaderAcceptCharset, "Accept-Charset" },
{ HttpHeaderAcceptEncoding, "Accept-Encoding" },
{ HttpHeaderAcceptLanguage, "Accept-Language" },
{ HttpHeaderAuthorization, "Authorization" },
{ HttpHeaderCookie, "Cookie" },
{ HttpHeaderExpect, "Expect" },
{ HttpHeaderFrom, "From" },
{ HttpHeaderHost, "Host" },
{ HttpHeaderIfMatch, "If-Match" },
{ HttpHeaderIfModifiedSince, "If-Modified-Since" },
{ HttpHeaderIfNoneMatch, "If-None-Match" },
{ HttpHeaderIfRange, "If-Range" },
{ HttpHeaderIfUnmodifiedSince, "If-Unmodified-Since" },
{ HttpHeaderMaxForwards, "Max-Forwards" },
{ HttpHeaderProxyAuthorization, "Proxy-Authorization" },
{ HttpHeaderReferer, "Referer" },
{ HttpHeaderRange, "Range" },
{ HttpHeaderTe, "TE" },
{ HttpHeaderTranslate, "Translate" },
{ HttpHeaderUserAgent, "User-Agent" }
};
headerEnumToRealName responseHeaderEnumToRealNameMapping[HttpHeaderResponseMaximum] = {
{ HttpHeaderCacheControl, "Cache-Control" },
{ HttpHeaderConnection, "Connection" },
{ HttpHeaderDate, "Date" },
{ HttpHeaderKeepAlive, "Keep-Alive" },
{ HttpHeaderPragma, "Pragma" },
{ HttpHeaderTrailer, "Trailer" },
{ HttpHeaderTransferEncoding, "Transfer-Encoding" },
{ HttpHeaderUpgrade, "Upgrade" },
{ HttpHeaderVia, "Via" },
{ HttpHeaderWarning, "Warning" },
{ HttpHeaderAllow, "Allow" },
{ HttpHeaderContentLength, "Content-Length" },
{ HttpHeaderContentType, "Content-Type" },
{ HttpHeaderContentEncoding, "Content-Encoding" },
{ HttpHeaderContentLanguage, "Content-Language" },
{ HttpHeaderContentLocation, "Content-Location" },
{ HttpHeaderContentMd5, "Content-Md5" },
{ HttpHeaderContentRange, "Content-Range" },
{ HttpHeaderExpires, "Expires" },
{ HttpHeaderLastModified, "Last-Modified" },
{ HttpHeaderAcceptRanges, "Accept-Ranges" },
{ HttpHeaderAge, "Age" },
{ HttpHeaderEtag, "Etag" },
{ HttpHeaderLocation, "Location" },
{ HttpHeaderProxyAuthenticate, "Proxy-Authenticate" },
{ HttpHeaderRetryAfter, "Retry-After" },
{ HttpHeaderServer, "Server" },
{ HttpHeaderSetCookie, "Set-Cookie" },
{ HttpHeaderVary, "Vary" },
{ HttpHeaderWwwAuthenticate, "Www-Authenticate" }
};
struct verbEnumToRealName {
_HTTP_VERB enumVal;
char* realName;
};
verbEnumToRealName verbEnumToRealNameMapping[HttpHeaderRequestMaximum] = {
{ HttpVerbOPTIONS, "OPTIONS" },
{ HttpVerbGET, "GET" },
{ HttpVerbHEAD, "HEAD" },
{ HttpVerbPOST, "POST" },
{ HttpVerbPUT, "PUT" },
{ HttpVerbDELETE, "DELETE" },
{ HttpVerbTRACE, "TRACE" },
{ HttpVerbCONNECT, "CONNECT" },
{ HttpVerbTRACK, "TRACK" },
{ HttpVerbMOVE, "MOVE" },
{ HttpVerbCOPY, "COPY" },
{ HttpVerbPROPFIND, "PROPFIND" },
{ HttpVerbPROPPATCH, "PROPPATCH" },
{ HttpVerbMKCOL, "MKCOL" },
{ HttpVerbLOCK, "LOCK" },
{ HttpVerbUNLOCK, "UNLOCK" },
{ HttpVerbSEARCH, "SEARCH" }
};
class MyHttpModule : public CHttpModule
{
private:
FILE *requestFp = NULL;
FILE *responseFp = NULL;
char responsefilename[100];
bool startedSendingResponse = false;
char basefilename[100];
std::vector<void*> bodychunks;
std::vector<DWORD> bodychunklengths;
public:
MyHttpModule() {
// Don't do anything if output dir doesn't exist
DWORD ftyp = GetFileAttributesA(directory);
if (ftyp == INVALID_FILE_ATTRIBUTES || !(ftyp & FILE_ATTRIBUTE_DIRECTORY))
{
return;
}
SYSTEMTIME startTime;
GetSystemTime(&startTime);
static boolean seeded = false;
if (!seeded) {
srand((unsigned int)this + startTime.wMilliseconds);
seeded = true;
}
unsigned long randomId = rand();
sprintf(this->basefilename, "%04d-%02d-%02dT%02d%02d%02d%04d.%010lu", startTime.wYear, startTime.wMonth, startTime.wDay, startTime.wHour, startTime.wMinute, startTime.wSecond, startTime.wMilliseconds, randomId);
}
REQUEST_NOTIFICATION_STATUS OnBeginRequest(IN IHttpContext * pHttpContext, IN IHttpEventProvider * pProvider)
{
UNREFERENCED_PARAMETER(pProvider);
return RQ_NOTIFICATION_CONTINUE;
}
REQUEST_NOTIFICATION_STATUS OnEndRequest(IN IHttpContext * pHttpContext, IN IHttpEventProvider *pProvider)
{
UNREFERENCED_PARAMETER(pHttpContext);
UNREFERENCED_PARAMETER(pProvider);
// Don't do anything if output dir doesn't exist
DWORD ftyp = GetFileAttributesA(directory);
if (ftyp == INVALID_FILE_ATTRIBUTES || !(ftyp & FILE_ATTRIBUTE_DIRECTORY))
{
return RQ_NOTIFICATION_CONTINUE;
}
// Get request object and give up if failed
IHttpRequest * pHttpRequest = pHttpContext->GetRequest();
if (pHttpRequest == NULL)
{
return RQ_NOTIFICATION_CONTINUE;
}
// Get raw request object and give up if failed
HTTP_REQUEST * pRawRequest = pHttpRequest->GetRawHttpRequest();
if (pRawRequest == NULL || pRawRequest->RequestId == NULL)
{
return RQ_NOTIFICATION_CONTINUE;
}
// Generate request file name and open file
char filepath[100];
sprintf(filepath, "");
strcat(filepath, directory);
strcat(filepath, basefilename);
strcat(filepath, ".request.txt");
this->requestFp = fopen(filepath, "wb");
// Write the verb
HTTP_VERB verb = pRawRequest->Verb;
if (verb == HttpVerbUnknown) {
fwrite(pRawRequest->pUnknownVerb, pRawRequest->UnknownVerbLength, 1, requestFp);
}
else {
char* verbStr = "";
for (int i = 0; i < HttpVerbMaximum; i++)
{
if (verb == verbEnumToRealNameMapping[i].enumVal)
{
verbStr = verbEnumToRealNameMapping[i].realName;
}
}
fwrite(verbStr, strlen(verbStr), 1, requestFp);
}
// Write HTTP version
fprintf(requestFp, " ");
fwrite(pRawRequest->pRawUrl, pRawRequest->RawUrlLength, 1, requestFp);
fprintf(requestFp, " HTTP/%d.%d\r\n", pRawRequest->Version.MajorVersion, pRawRequest->Version.MinorVersion);
// Write "known headers"
for (int i = 0; i < HttpHeaderRequestMaximum; i++)
{
_HTTP_HEADER_ID id = requestHeaderEnumToRealNameMapping[i].enumVal;
if (pRawRequest->Headers.KnownHeaders[id].pRawValue != NULL)
{
fprintf(requestFp, "%s: ", requestHeaderEnumToRealNameMapping[i].realName);
fwrite(pRawRequest->Headers.KnownHeaders[id].pRawValue, pRawRequest->Headers.KnownHeaders[id].RawValueLength, 1, requestFp);
fprintf(requestFp, "\r\n");
}
}
// Write "unknown headers"
for (int i = 0; i < pRawRequest->Headers.UnknownHeaderCount; i++) {
fwrite(pRawRequest->Headers.pUnknownHeaders[i].pName, pRawRequest->Headers.pUnknownHeaders[i].NameLength, 1, requestFp);
fwrite(": ", strlen(": "), 1, requestFp);
fwrite(pRawRequest->Headers.pUnknownHeaders[i].pRawValue, pRawRequest->Headers.pUnknownHeaders[i].RawValueLength, 1, requestFp);
fwrite("\r\n", strlen("\r\n"), 1, requestFp);
}
fprintf(requestFp, "\r\n");
// Write previously memory buffered body to disk
for (size_t i = 0; i < bodychunks.size(); i++)
{
fwrite(this->bodychunks[i], bodychunklengths[i], 1, this->requestFp);
}
return RQ_NOTIFICATION_CONTINUE;
}
REQUEST_NOTIFICATION_STATUS OnReadEntity(_In_ IHttpContext * pHttpContext, _In_ IReadEntityProvider * pProvider)
{
UNREFERENCED_PARAMETER(pHttpContext);
// Don't do anything if output dir doesn't exist
DWORD ftyp = GetFileAttributesA(directory);
if (ftyp == INVALID_FILE_ATTRIBUTES || !(ftyp & FILE_ATTRIBUTE_DIRECTORY))
{
return RQ_NOTIFICATION_CONTINUE;
}
PVOID ppBuffer;
DWORD pcbData;
DWORD pcbBuffer;
pProvider->GetEntity(&ppBuffer, &pcbData, &pcbBuffer);
// We cannot write body to file already, because OnBeginRequest might not yet have happened if if another module is doing ReadEntityBody in their OnBeginRequest.
// Therefore buffer into memory.
void* allocated = pHttpContext->AllocateRequestMemory(pcbData);
memcpy_s(allocated, pcbData, ppBuffer, pcbData);
this->bodychunks.push_back(allocated);
this->bodychunklengths.push_back(pcbData);
return RQ_NOTIFICATION_CONTINUE;
}
REQUEST_NOTIFICATION_STATUS OnSendResponse(_In_ IHttpContext * pHttpContext, _In_ ISendResponseProvider * pProvider)
{
UNREFERENCED_PARAMETER(pProvider);
// Don't do anything if output dir doesn't exist
DWORD ftyp = GetFileAttributesA(directory);
if (ftyp == INVALID_FILE_ATTRIBUTES || !(ftyp & FILE_ATTRIBUTE_DIRECTORY))
{
return RQ_NOTIFICATION_CONTINUE;
}
// Get response object and give up if failed
IHttpResponse *pHttpResponse = pHttpContext->GetResponse();
if (pHttpResponse == NULL)
{
return RQ_NOTIFICATION_CONTINUE;
}
// Get raw response object and give up if failed
HTTP_RESPONSE *pRawHttpResponse = pHttpResponse->GetRawHttpResponse();
if (pRawHttpResponse == NULL)
{
return RQ_NOTIFICATION_CONTINUE;
}
// Did we already start sending the response?
if (!startedSendingResponse)
{
this->startedSendingResponse = true;
// Generate response file name and open file
sprintf(this->responsefilename, "");
strcat(this->responsefilename, directory);
strcat(this->responsefilename, basefilename);
strcat(this->responsefilename, ".response.txt");
this->responseFp = fopen(this->responsefilename, "wb");
// Write response first line
fprintf(responseFp, "HTTP/%d.%d %d ", pRawHttpResponse->Version.MajorVersion, pRawHttpResponse->Version.MinorVersion, pRawHttpResponse->StatusCode);
fwrite(pRawHttpResponse->pReason, pRawHttpResponse->ReasonLength, 1, responseFp);
fprintf(responseFp, "\r\n");
// Write "known headers"
for (int i = 0; i < HttpHeaderResponseMaximum; i++)
{
_HTTP_HEADER_ID id = responseHeaderEnumToRealNameMapping[i].enumVal;
if (pRawHttpResponse->Headers.KnownHeaders[id].pRawValue != NULL)
{
fprintf(responseFp, "%s: ", responseHeaderEnumToRealNameMapping[i].realName);
fwrite(pRawHttpResponse->Headers.KnownHeaders[id].pRawValue, pRawHttpResponse->Headers.KnownHeaders[id].RawValueLength, 1, responseFp);
fprintf(responseFp, "\r\n");
}
}
// Write "unknown headers"
for (int i = 0; i < pRawHttpResponse->Headers.UnknownHeaderCount; i++) {
fwrite(pRawHttpResponse->Headers.pUnknownHeaders[i].pName, pRawHttpResponse->Headers.pUnknownHeaders[i].NameLength, 1, responseFp);
fwrite(": ", strlen(": "), 1, responseFp);
fwrite(pRawHttpResponse->Headers.pUnknownHeaders[i].pRawValue, pRawHttpResponse->Headers.pUnknownHeaders[i].RawValueLength, 1, responseFp);
fwrite("\r\n", strlen("\r\n"), 1, responseFp);
}
fprintf(responseFp, "\r\n");
}
// Write response body chunk to file
for (int i = 0; i < pRawHttpResponse->EntityChunkCount; i++)
{
PHTTP_DATA_CHUNK pSourceDataChunk = &pRawHttpResponse->pEntityChunks[i];
switch (pSourceDataChunk->DataChunkType)
{
case HttpDataChunkFromMemory:
fwrite(pSourceDataChunk->FromMemory.pBuffer, pSourceDataChunk->FromMemory.BufferLength, 1, this->responseFp);
break;
default:
// No support for HttpDataChunkFromFileHandle and HttpDataChunkFromFragmentCache
break;
}
}
return RQ_NOTIFICATION_CONTINUE;
}
VOID Dispose(VOID)
{
if(this->requestFp) fclose(this->requestFp);
if (this->responseFp) fclose(this->responseFp);
delete this;
}
};
class MyHttpModuleFactory : public IHttpModuleFactory
{
public:
HRESULT
GetHttpModule(
OUT CHttpModule ** ppModule,
IN IModuleAllocator * pAllocator
)
{
UNREFERENCED_PARAMETER(pAllocator);
MyHttpModule * pModule = new MyHttpModule;
if (!pModule)
{
return HRESULT_FROM_WIN32(ERROR_NOT_ENOUGH_MEMORY);
}
else
{
*ppModule = pModule;
pModule = NULL;
return S_OK;
}
}
void Terminate()
{
delete this;
}
};
HRESULT
__stdcall
RegisterModule(
DWORD dwServerVersion,
IHttpModuleRegistrationInfo * pModuleInfo,
IHttpServer * pGlobalInfo
)
{
UNREFERENCED_PARAMETER(dwServerVersion);
UNREFERENCED_PARAMETER(pGlobalInfo);
HRESULT hr = pModuleInfo->SetRequestNotifications(
new MyHttpModuleFactory,
RQ_BEGIN_REQUEST | RQ_END_REQUEST | RQ_SEND_RESPONSE | RQ_READ_ENTITY,
0
);
pModuleInfo->SetPriorityForRequestNotification(RQ_BEGIN_REQUEST, PRIORITY_ALIAS_FIRST);
pModuleInfo->SetPriorityForRequestNotification(RQ_SEND_RESPONSE, PRIORITY_ALIAS_LAST);
return hr;
}