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
|
#include "common.h"
#include "EnforceFilter.h"
////////////////////////////////////////////////////////////////////////////////
//
// EnforceFilter.cpp
//
// Author: Oleg Starodumov (www.debuginfo.com)
//
////////////////////////////////////////////////////////////////////////////////
//
// This example demonstrates how to ensure that nobody else can overwrite
// our custom filter for unhandler exceptions. This is achieved by patching
// SetUnhandledExceptionFilter function.
//
//
////////////////////////////////////////////////////////////////////////////////
// Include files
//
#include <windows.h>
#include <tchar.h>
#include <crtdbg.h>
#include <stdio.h>
#include "EnforceFilter.h"
////////////////////////////////////////////////////////////////////////////////
// Global variables
//
// Patch for SetUnhandledExceptionFilter
const BYTE PatchBytes[5] = { 0x33, 0xC0, 0xC2, 0x04, 0x00 };
// Original bytes at the beginning of SetUnhandledExceptionFilter
BYTE OriginalBytes[5] = {0};
////////////////////////////////////////////////////////////////////////////////
// EnforceFilter function
//
bool EnforceFilter( bool bEnforce )
{
DWORD ErrCode = 0;
// Obtain the address of SetUnhandledExceptionFilter
HMODULE hLib = GetModuleHandle( _T("kernel32.dll") );
if( hLib == NULL )
{
ErrCode = GetLastError();
_ASSERTE( !_T("GetModuleHandle(kernel32.dll) failed.") );
return false;
}
BYTE* pTarget = (BYTE*)GetProcAddress( hLib, "SetUnhandledExceptionFilter" );
if( pTarget == 0 )
{
ErrCode = GetLastError();
_ASSERTE( !_T("GetProcAddress(SetUnhandledExceptionFilter) failed.") );
return false;
}
if( IsBadReadPtr( pTarget, sizeof(OriginalBytes) ) )
{
_ASSERTE( !_T("Target is unreadable.") );
return false;
}
if( bEnforce )
{
// Save the original contents of SetUnhandledExceptionFilter
memcpy( OriginalBytes, pTarget, sizeof(OriginalBytes) );
// Patch SetUnhandledExceptionFilter
if( !WriteMemory( pTarget, PatchBytes, sizeof(PatchBytes) ) )
return false;
}
else
{
// Restore the original behavior of SetUnhandledExceptionFilter
if( !WriteMemory( pTarget, OriginalBytes, sizeof(OriginalBytes) ) )
return false;
}
// Success
return true;
}
////////////////////////////////////////////////////////////////////////////////
// WriteMemory function
//
bool WriteMemory( BYTE* pTarget, const BYTE* pSource, DWORD Size )
{
DWORD ErrCode = 0;
// Check parameters
if( pTarget == 0 )
{
_ASSERTE( !_T("Target address is null.") );
return false;
}
if( pSource == 0 )
{
_ASSERTE( !_T("Source address is null.") );
return false;
}
if( Size == 0 )
{
_ASSERTE( !_T("Source size is null.") );
return false;
}
if( IsBadReadPtr( pSource, Size ) )
{
_ASSERTE( !_T("Source is unreadable.") );
return false;
}
// Modify protection attributes of the target memory page
DWORD OldProtect = 0;
if( !VirtualProtect( pTarget, Size, PAGE_EXECUTE_READWRITE, &OldProtect ) )
{
ErrCode = GetLastError();
_ASSERTE( !_T("VirtualProtect() failed.") );
return false;
}
// Write memory
memcpy( pTarget, pSource, Size );
// Restore memory protection attributes of the target memory page
DWORD Temp = 0;
if( !VirtualProtect( pTarget, Size, OldProtect, &Temp ) )
{
ErrCode = GetLastError();
_ASSERTE( !_T("VirtualProtect() failed.") );
return false;
}
// Success
return true;
}
|