Add files via upload
parent
ed77dbc13f
commit
1f394bde3d
@ -0,0 +1,87 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|x64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<VCProjectVersion>16.0</VCProjectVersion>
|
||||
<ProjectGuid>{68C049A1-7EA4-45D2-942C-7710AF16B1FA}</ProjectGuid>
|
||||
<RootNamespace>Overlay</RootNamespace>
|
||||
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
|
||||
<ProjectName>Overlay</ProjectName>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<PlatformToolset>ClangCL</PlatformToolset>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<SpectreMitigation>false</SpectreMitigation>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<PlatformToolset>v143</PlatformToolset>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<SpectreMitigation>false</SpectreMitigation>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="Shared">
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<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|x64'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<TargetName>overlay_ap</TargetName>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<TargetName>Stragulum</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<SDLCheck>true</SDLCheck>
|
||||
<ConformanceMode>true</ConformanceMode>
|
||||
<AdditionalOptions>-Xclang -flegacy-pass-manager -mllvm -sub -mllvm -split -mllvm -fla -mllvm -bcf %(AdditionalOptions)</AdditionalOptions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<SDLCheck>true</SDLCheck>
|
||||
<ConformanceMode>true</ConformanceMode>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="main.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="Header Files">
|
||||
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
||||
<Extensions>h;hh;hpp;hxx;hm;inl;inc;ipp;xsd</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Source Files">
|
||||
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
||||
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Resource Files">
|
||||
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
||||
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="main.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
</Project>
|
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup />
|
||||
</Project>
|
@ -0,0 +1,48 @@
|
||||
#include <Windows.h>
|
||||
#include <chrono>
|
||||
#include <Dwmapi.h>
|
||||
#pragma comment(lib, "dwmapi.lib")
|
||||
|
||||
const MARGINS margins = { -1 ,-1, -1, -1 };
|
||||
const wchar_t g_szClassName[] = L"overlay";
|
||||
|
||||
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
|
||||
{
|
||||
WNDCLASSEX wc;
|
||||
HWND hwnd;
|
||||
MSG Msg;
|
||||
|
||||
wc.cbSize = sizeof(WNDCLASSEX);
|
||||
wc.style = CS_HREDRAW | CS_VREDRAW;
|
||||
wc.lpfnWndProc = DefWindowProc;
|
||||
wc.cbClsExtra = 0;
|
||||
wc.cbWndExtra = 0;
|
||||
wc.hInstance = hInstance;
|
||||
wc.hIcon = LoadIcon(NULL, IDI_APPLICATION);
|
||||
wc.hCursor = LoadCursor(NULL, IDC_ARROW);
|
||||
wc.hbrBackground = (HBRUSH)(RGB(0,0,0));
|
||||
wc.lpszMenuName = NULL;
|
||||
wc.lpszClassName = g_szClassName;
|
||||
wc.hIconSm = LoadIcon(NULL, IDI_APPLICATION);
|
||||
|
||||
RegisterClassEx(&wc);
|
||||
|
||||
hwnd = CreateWindowEx(
|
||||
WS_EX_LAYERED | WS_EX_TRANSPARENT,
|
||||
g_szClassName,
|
||||
g_szClassName,
|
||||
WS_POPUP | WS_VISIBLE,
|
||||
0, 0, 1920, 1080,
|
||||
NULL, NULL, hInstance, NULL);
|
||||
|
||||
SetLayeredWindowAttributes(hwnd, RGB(0,0,0), 255, LWA_ALPHA);
|
||||
DwmExtendFrameIntoClientArea(hwnd, &margins);
|
||||
|
||||
while (GetMessage(&Msg, NULL, 0, 0) > 0)
|
||||
{
|
||||
TranslateMessage(&Msg);
|
||||
DispatchMessage(&Msg);
|
||||
}
|
||||
exit(0);
|
||||
return Msg.wParam;
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project>
|
||||
<ProjectOutputs>
|
||||
<ProjectOutput>
|
||||
<FullPath>C:\Users\baxin\Downloads\KrackerCoRepo\apex_guest\x64\Debug\Overlay.exe</FullPath>
|
||||
</ProjectOutput>
|
||||
</ProjectOutputs>
|
||||
<ContentFiles />
|
||||
<SatelliteDlls />
|
||||
<NonRecipeFileRefs />
|
||||
</Project>
|
Binary file not shown.
@ -0,0 +1 @@
|
||||
Overlay.vcxproj -> C:\Users\baxin\Downloads\KrackerCoRepo\apex_guest\x64\Debug\Stragulum.exe
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,2 @@
|
||||
PlatformToolSet=ClangCL:VCToolArchitecture=Native64Bit:VCToolsVersion=14.33.31629:TargetPlatformVersion=10.0.19041.0:
|
||||
C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\Llvm\x64|14.0.5|Debug|x64|C:\Users\baxin\Downloads\KrackerCoRepo\apex_guest\|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project>
|
||||
<ProjectOutputs>
|
||||
<ProjectOutput>
|
||||
<FullPath>C:\Users\baxin\Downloads\KrackerCoRepo\apex_guest\x64\Debug\Stragulum.exe</FullPath>
|
||||
</ProjectOutput>
|
||||
</ProjectOutputs>
|
||||
<ContentFiles />
|
||||
<SatelliteDlls />
|
||||
<NonRecipeFileRefs />
|
||||
</Project>
|
Binary file not shown.
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project>
|
||||
<ProjectOutputs>
|
||||
<ProjectOutput>
|
||||
<FullPath>C:\Users\baxin\Downloads\KrackerCoRepo\apex_guest\x64\Debug\Stragulum1.exe</FullPath>
|
||||
</ProjectOutput>
|
||||
</ProjectOutputs>
|
||||
<ContentFiles />
|
||||
<SatelliteDlls />
|
||||
<NonRecipeFileRefs />
|
||||
</Project>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,5 @@
|
||||
Generating code
|
||||
Previous IPDB not found, fall back to full compilation.
|
||||
All 1 functions were compiled because no usable IPDB/IOBJ from previous compilation was found.
|
||||
Finished generating code
|
||||
Overlay.vcxproj -> C:\Users\baxin\Downloads\KrackerCoRepo\apex_guest\x64\Release\overlay_ap.exe
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,2 @@
|
||||
PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.33.31629:TargetPlatformVersion=10.0.19041.0:
|
||||
Release|x64|C:\Users\baxin\Downloads\KrackerCoRepo\apex_guest\|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,26 @@
|
||||
c:\users\baxin\downloads\apex_dma_kvm_pub-master3\apex_dma_kvm_pub-master\apex_guest\overlay\overlay\x64\release\vc143.pdb
|
||||
c:\users\baxin\downloads\apex_dma_kvm_pub-master3\apex_dma_kvm_pub-master\apex_guest\overlay\overlay\x64\release\main.obj
|
||||
c:\users\baxin\downloads\krackercorepo\apex_guest\overlay\overlay\x64\release\vc143.pdb
|
||||
c:\users\baxin\downloads\krackercorepo\apex_guest\overlay\overlay\x64\release\main.obj
|
||||
c:\users\baxin\downloads\apex_dma_kvm_pub-master3\apex_dma_kvm_pub-master\apex_guest\x64\release\overlay_ap.exe
|
||||
c:\users\baxin\downloads\apex_dma_kvm_pub-master3\apex_dma_kvm_pub-master\apex_guest\overlay\overlay\x64\release\overlay_ap.ipdb
|
||||
c:\users\baxin\downloads\apex_dma_kvm_pub-master3\apex_dma_kvm_pub-master\apex_guest\x64\release\overlay_ap.pdb
|
||||
c:\users\baxin\downloads\apex_dma_kvm_pub-master3\apex_dma_kvm_pub-master\apex_guest\overlay\overlay\x64\release\overlay_ap.iobj
|
||||
c:\users\baxin\downloads\krackercorepo\apex_guest\x64\release\overlay_ap.exe
|
||||
c:\users\baxin\downloads\krackercorepo\apex_guest\overlay\overlay\x64\release\overlay_ap.ipdb
|
||||
c:\users\baxin\downloads\krackercorepo\apex_guest\x64\release\overlay_ap.pdb
|
||||
c:\users\baxin\downloads\krackercorepo\apex_guest\overlay\overlay\x64\release\overlay_ap.iobj
|
||||
c:\users\baxin\downloads\krackercorepo\apex_guest\x64\release\stragulum.pdb
|
||||
c:\users\baxin\downloads\krackercorepo\apex_guest\x64\release\stragulum.exe
|
||||
c:\users\baxin\downloads\krackercorepo\apex_guest\overlay\overlay\x64\release\overlay.tlog\cl.command.1.tlog
|
||||
c:\users\baxin\downloads\krackercorepo\apex_guest\overlay\overlay\x64\release\overlay.tlog\cl.read.1.tlog
|
||||
c:\users\baxin\downloads\krackercorepo\apex_guest\overlay\overlay\x64\release\overlay.tlog\cl.write.1.tlog
|
||||
c:\users\baxin\downloads\krackercorepo\apex_guest\overlay\overlay\x64\release\overlay.tlog\clang-cl.command.1.tlog
|
||||
c:\users\baxin\downloads\krackercorepo\apex_guest\overlay\overlay\x64\release\overlay.tlog\clang-cl.read.1.tlog
|
||||
c:\users\baxin\downloads\krackercorepo\apex_guest\overlay\overlay\x64\release\overlay.tlog\clang-cl.write.1.tlog
|
||||
c:\users\baxin\downloads\krackercorepo\apex_guest\overlay\overlay\x64\release\overlay.tlog\link.command.1.tlog
|
||||
c:\users\baxin\downloads\krackercorepo\apex_guest\overlay\overlay\x64\release\overlay.tlog\link.read.1.tlog
|
||||
c:\users\baxin\downloads\krackercorepo\apex_guest\overlay\overlay\x64\release\overlay.tlog\link.write.1.tlog
|
||||
c:\users\baxin\downloads\krackercorepo\apex_guest\overlay\overlay\x64\release\overlay.tlog\lld-link.command.1.tlog
|
||||
c:\users\baxin\downloads\krackercorepo\apex_guest\overlay\overlay\x64\release\overlay.tlog\lld-link.read.1.tlog
|
||||
c:\users\baxin\downloads\krackercorepo\apex_guest\overlay\overlay\x64\release\overlay.tlog\lld-link.write.1.tlog
|
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project>
|
||||
<ProjectOutputs>
|
||||
<ProjectOutput>
|
||||
<FullPath>C:\Users\baxin\Downloads\KrackerCoRepo\apex_guest\x64\Release\Stragulum.exe</FullPath>
|
||||
</ProjectOutput>
|
||||
</ProjectOutputs>
|
||||
<ContentFiles />
|
||||
<SatelliteDlls />
|
||||
<NonRecipeFileRefs />
|
||||
</Project>
|
Binary file not shown.
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project>
|
||||
<ProjectOutputs>
|
||||
<ProjectOutput>
|
||||
<FullPath>C:\Users\baxin\Downloads\KrackerCoRepo\apex_guest\x64\Release\overlay_ap.exe</FullPath>
|
||||
</ProjectOutput>
|
||||
</ProjectOutputs>
|
||||
<ContentFiles />
|
||||
<SatelliteDlls />
|
||||
<NonRecipeFileRefs />
|
||||
</Project>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue