468654d2b5
This commit is the first in a series that will move all the exploits that use RDI over to the R7 fork. The RDI source will be in a single known location and each exploit will have to work from that location. The kitrap0d exploit has been migrated over to use this submodule so that there's one example of how it's done for future contributions to follow.
19 lines
589 B
XML
Executable File
19 lines
589 B
XML
Executable File
<?xml version="1.0" standalone="yes"?>
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<SolutionPath>.\kitrap0d.sln</SolutionPath>
|
|
</PropertyGroup>
|
|
|
|
<Target Name="all" DependsOnTargets="x86" />
|
|
|
|
<Target Name="x86">
|
|
<Message Text="Building CVE-2010-0232 KiTrap0D x86 Release version" />
|
|
<MSBuild Projects="$(SolutionPath)" Properties="Configuration=Release;Platform=Win32" Targets="Clean;Rebuild"/>
|
|
</Target>
|
|
|
|
<Target Name="x64">
|
|
<Message Text="KiTrap0D is not supported in x64" />
|
|
</Target>
|
|
</Project>
|
|
|