d2b8706bd6
This commit contains the binaries that are needed for Juan's sandbox escape functionality (ie. the updated old libloader code). It also contains rebuilt binaries for all meterpreter plugins. I've also added command line build scripts for the sandbox escapes and added that to the "exploits" build.
19 lines
602 B
XML
Executable File
19 lines
602 B
XML
Executable File
<?xml version="1.0" standalone="yes"?>
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<SolutionPath>.\IE11SandboxEscapes.sln</SolutionPath>
|
|
</PropertyGroup>
|
|
|
|
<Target Name="all" DependsOnTargets="x86" />
|
|
|
|
<Target Name="x86">
|
|
<Message Text="Building IE11SandboxEscapes x86 Release version" />
|
|
<MSBuild Projects="$(SolutionPath)" Properties="Configuration=Release;Platform=Win32" Targets="Clean;Rebuild"/>
|
|
</Target>
|
|
|
|
<Target Name="x64">
|
|
<Message Text="IE11SandboxEscapes not supported in x64" />
|
|
</Target>
|
|
</Project>
|
|
|