mirror of
https://github.com/hacksysteam/HackSysExtremeVulnerableDriver
synced 2026-06-08 14:31:02 +00:00
101 lines
4.5 KiB
XML
101 lines
4.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<ItemGroup Label="ProjectConfigurations">
|
|
<ProjectConfiguration Include="Debug|Win32">
|
|
<Configuration>Debug</Configuration>
|
|
<Platform>Win32</Platform>
|
|
</ProjectConfiguration>
|
|
<ProjectConfiguration Include="Release|Win32">
|
|
<Configuration>Release</Configuration>
|
|
<Platform>Win32</Platform>
|
|
</ProjectConfiguration>
|
|
</ItemGroup>
|
|
<PropertyGroup Label="Globals">
|
|
<ProjectGuid>{A432D8CD-BCEA-49B5-81EE-20B926D7421A}</ProjectGuid>
|
|
<RootNamespace>HackSysEVDExploit</RootNamespace>
|
|
<ProjectName>HackSysEVDExploit</ProjectName>
|
|
</PropertyGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
<ConfigurationType>Application</ConfigurationType>
|
|
<UseDebugLibraries>true</UseDebugLibraries>
|
|
<CharacterSet>MultiByte</CharacterSet>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
<ConfigurationType>Application</ConfigurationType>
|
|
<UseDebugLibraries>false</UseDebugLibraries>
|
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
<CharacterSet>MultiByte</CharacterSet>
|
|
</PropertyGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
<ImportGroup Label="ExtensionSettings">
|
|
</ImportGroup>
|
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
</ImportGroup>
|
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
</ImportGroup>
|
|
<PropertyGroup Label="UserMacros" />
|
|
<PropertyGroup />
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
<ClCompile>
|
|
<WarningLevel>Level3</WarningLevel>
|
|
<Optimization>Disabled</Optimization>
|
|
</ClCompile>
|
|
<Link>
|
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
</Link>
|
|
</ItemDefinitionGroup>
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
<ClCompile>
|
|
<WarningLevel>Level3</WarningLevel>
|
|
<Optimization>MaxSpeed</Optimization>
|
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
</ClCompile>
|
|
<Link>
|
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
<OptimizeReferences>true</OptimizeReferences>
|
|
</Link>
|
|
</ItemDefinitionGroup>
|
|
<ItemGroup>
|
|
<ClCompile Include="ArbitraryOverwrite.c" />
|
|
<ClCompile Include="Common.c" />
|
|
<ClCompile Include="DoubleFetch.c" />
|
|
<ClCompile Include="HackSysEVDExploit.c" />
|
|
<ClCompile Include="InsecureKernelResourceAccess.c" />
|
|
<ClCompile Include="IntegerOverflow.c" />
|
|
<ClCompile Include="NullPointerDereference.c" />
|
|
<ClCompile Include="PoolOverflow.c" />
|
|
<ClCompile Include="Payloads.c" />
|
|
<ClCompile Include="StackOverflow.c" />
|
|
<ClCompile Include="StackOverflowGS.c" />
|
|
<ClCompile Include="TypeConfusion.c" />
|
|
<ClCompile Include="UninitializedHeapVariable.c" />
|
|
<ClCompile Include="UninitializedStackVariable.c" />
|
|
<ClCompile Include="UseAfterFree.c" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ClInclude Include="ArbitraryOverwrite.h" />
|
|
<ClInclude Include="arg.h" />
|
|
<ClInclude Include="Common.h" />
|
|
<ClInclude Include="DoubleFetch.h" />
|
|
<ClInclude Include="HackSysEVDExploit.h" />
|
|
<ClInclude Include="InsecureKernelResourceAccess.h" />
|
|
<ClInclude Include="IntegerOverflow.h" />
|
|
<ClInclude Include="NullPointerDereference.h" />
|
|
<ClInclude Include="PoolOverflow.h" />
|
|
<ClInclude Include="Payloads.h" />
|
|
<ClInclude Include="StackOverflow.h" />
|
|
<ClInclude Include="StackOverflowGS.h" />
|
|
<ClInclude Include="TypeConfusion.h" />
|
|
<ClInclude Include="UninitializedHeapVariable.h" />
|
|
<ClInclude Include="UninitializedStackVariable.h" />
|
|
<ClInclude Include="UseAfterFree.h" />
|
|
</ItemGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
<ImportGroup Label="ExtensionTargets">
|
|
</ImportGroup>
|
|
</Project> |