Skip to content

Commit 6ff14a1

Browse files
committed
Remove build version check and compiled files
1 parent 0d09d60 commit 6ff14a1

File tree

7 files changed

+30
-9
lines changed

7 files changed

+30
-9
lines changed

109/109/109.cpp

+2-5
Original file line numberDiff line numberDiff line change
@@ -174,11 +174,8 @@ HRESULT EXT_CLASS::Initialize()
174174
};
175175
const VersionMap supportedVersions[] =
176176
{
177-
{ "Built by: 9600.17085", TargetOsVersion::Win8_1, },
178-
{ "Built by: 9600.17041", TargetOsVersion::Win8_1, },
179-
{ "Built by: 9600.16452", TargetOsVersion::Win8_1, },
180-
{ "Built by: 7601.18409", TargetOsVersion::Win7, },
181-
{ "Built by: 7601.18247", TargetOsVersion::Win7, },
177+
{ "Built by: 9600.", TargetOsVersion::Win8_1, },
178+
{ "Built by: 7601.", TargetOsVersion::Win7, },
182179
};
183180
for (const auto& supported : supportedVersions)
184181
{

109/109/109.vcxproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<ItemGroup Label="ProjectConfigurations">
44
<ProjectConfiguration Include="Debug|Win32">
55
<Configuration>Debug</Configuration>
@@ -22,6 +22,7 @@
2222
<ProjectGuid>{CBA02CAB-8BA0-4973-97D2-DB9335588203}</ProjectGuid>
2323
<Keyword>Win32Proj</Keyword>
2424
<RootNamespace>My109</RootNamespace>
25+
<TargetPlatformVersion>10.0.10069.0</TargetPlatformVersion>
2526
</PropertyGroup>
2627
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
2728
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">

109/README.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
109
22
==========================
33

4-
This is an WinDbg extension designed to help researchers analyze PatchGuard. It allows researchers to derive information of PatchGuard from bugcheck [CRITICAL_STRUCTURE_CORRUPTION (109)](http://msdn.microsoft.com/en-ca/library/windows/hardware/ff557228(v=vs.85).aspx) and a specified address. For more information, see [sample_output.txt](sample_output.txt) and use !help command on WinDbg.
4+
This is an WinDbg extension designed to help researchers analyze PatchGuard. It
5+
allows researchers to derive information of PatchGuard from bugcheck
6+
[CRITICAL_STRUCTURE_CORRUPTION (109)](http://msdn.microsoft.com/en-ca/library/windows/hardware/ff557228(v=vs.85).aspx)
7+
and a specified address. For more information, see [sample_output.txt](sample_output.txt)
8+
and use !help command on WinDbg.
59

610
Installation
711
---------------
@@ -38,8 +42,8 @@ Host:
3842

3943
Target:
4044

41-
- Windows 8.1 x64 (ntoskrnl.exe versions: 17085, 17041, 16452)
42-
- Windows 7 SP1 x64 (ntoskrnl.exe versions: 18409, 18247)
45+
- Windows 8.1 x64
46+
- Windows 7 SP1 x64
4347

4448
License
4549
-----------------

109/Release/109.dll

-42.5 KB
Binary file not shown.

109/clean.bat

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
del *.sdf *.opensdf
2+
del /a:h *.suo
3+
rmdir /s /q .vs
4+
rmdir /s /q ipch
5+
rmdir /s /q Debug
6+
rmdir /s /q Release
7+
rmdir /s /q x64
8+
rmdir /s /q 109\Debug
9+
rmdir /s /q 109\Release
10+
rmdir /s /q 109\x64
11+
del /s *.aps
12+
pause

109/clean_for_release.bat

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
del /s *.lib *.exp *.pdb
2+
mkdir bin_109
3+
mkdir bin_109\x86
4+
mkdir bin_109\x64
5+
move Release\* bin_109\x86
6+
move x64\Release\* bin_109\x64
7+
pause

109/x64/Release/109.dll

-52 KB
Binary file not shown.

0 commit comments

Comments
 (0)