aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsegfault <toni@impl.cc>2021-04-18 16:39:46 +0200
committersegfault <toni@impl.cc>2021-04-18 16:39:46 +0200
commit791a8c5475e2291ff2c2526a1468ff42fc0328c8 (patch)
tree84ced518bb7946e79f1bae51c4ab4617b04ceeee
parente2bb9595f6442c96c017bddd461ec40b4e6b410e (diff)
Removed broken and unused CheatEngineServer.
-rw-r--r--CheatEngineServer/CheatEngine.h159
-rw-r--r--CheatEngineServer/CheatEngineServer.cpp119
-rw-r--r--CheatEngineServer/CheatEngineServer.vcxproj174
-rw-r--r--CheatEngineServer/CheatEngineServer.vcxproj.filters33
-rw-r--r--CheatEngineServer/CommandDispatcher.cpp552
-rw-r--r--CheatEngineServer/CommandDispatcher.h11
-rw-r--r--KMemDriver.sln9
7 files changed, 0 insertions, 1057 deletions
diff --git a/CheatEngineServer/CheatEngine.h b/CheatEngineServer/CheatEngine.h
deleted file mode 100644
index 854b1c2..0000000
--- a/CheatEngineServer/CheatEngine.h
+++ /dev/null
@@ -1,159 +0,0 @@
-#pragma once
-
-#include "KInterface.h"
-#include <winsock.h>
-
-#include <vector>
-
-#define CE_PORT "52736"
-#define MSG_WAITALL 0x8
-
-#pragma warning(push)
-#pragma warning(disable : 26812)
-typedef enum ce_command {
- CMD_GETVERSION = 0,
- CMD_CLOSECONNECTION,
- CMD_TERMINATESERVER,
- CMD_OPENPROCESS,
- CMD_CREATETOOLHELP32SNAPSHOT,
- CMD_PROCESS32FIRST,
- CMD_PROCESS32NEXT,
- CMD_CLOSEHANDLE,
- CMD_VIRTUALQUERYEX,
- CMD_READPROCESSMEMORY,
- CMD_WRITEPROCESSMEMORY,
- CMD_STARTDEBUG,
- CMD_STOPDEBUG,
- CMD_WAITFORDEBUGEVENT,
- CMD_CONTINUEFROMDEBUGEVENT,
- CMD_SETBREAKPOINT,
- CMD_REMOVEBREAKPOINT,
- CMD_SUSPENDTHREAD,
- CMD_RESUMETHREAD,
- CMD_GETTHREADCONTEXT,
- CMD_SETTHREADCONTEXT,
- CMD_GETARCHITECTURE,
- CMD_MODULE32FIRST,
- CMD_MODULE32NEXT,
- CMD_GETSYMBOLLISTFROMFILE,
- CMD_LOADEXTENSION,
- CMD_ALLOC,
- CMD_FREE,
- CMD_CREATETHREAD,
- CMD_LOADMODULE,
- CMD_SPEEDHACK_SETSPEED,
- CMD_VIRTUALQUERYEXFULL,
- CMD_GETREGIONINFO,
- CMD_AOBSCAN = 200,
- CMD_COMMANDLIST2 = 255,
-
- CMD_MAX
-} ce_command;
-
-static inline char const* ce_command_to_string(enum ce_command cmd)
-{
- static char const* const cmd_map[] = {
- "CMD_GETVERSION", "CMD_CLOSECONNECTION", "CMD_TERMINATESERVER", "CMD_OPENPROCESS",
- "CMD_CREATETOOLHELP32SNAPSHOT", "CMD_PROCESS32FIRST", "CMD_PROCESS32NEXT", "CMD_CLOSEHANDLE",
- "CMD_VIRTUALQUERYEX", "CMD_READPROCESSMEMORY", "CMD_WRITEPROCESSMEMORY", "CMD_STARTDEBUG",
- "CMD_STOPDEBUG", "CMD_WAITFORDEBUGEVENT", "CMD_CONTINUEFROMDEBUGEVENT", "CMD_SETBREAKPOINT",
- "CMD_REMOVEBREAKPOINT", "CMD_SUSPENDTHREAD", "CMD_RESUMETHREAD", "CMD_GETTHREADCONTEXT",
- "CMD_SETTHREADCONTEXT", "CMD_GETARCHITECTURE", "CMD_MODULE32FIRST", "CMD_MODULE32NEXT",
- "CMD_GETSYMBOLLISTFROMFILE", "CMD_LOADEXTENSION", "CMD_ALLOC", "CMD_FREE", "CMD_CREATETHREAD",
- "CMD_LOADMODULE", "CMD_SPEEDHACK_SETSPEED", "CMD_VIRTUALQUERYEXFULL", "CMD_GETREGIONINFO",
- "CMD_AOBSCAN", "CMD_COMMANDLIST2"
- };
- if (cmd < 0 || cmd >= CMD_MAX)
- {
- return "Unknown Command";
- }
- return cmd_map[cmd];
-}
-#pragma warning(pop)
-
-#pragma pack(1)
-typedef struct {
- int version;
- unsigned char stringsize;
- //append the versionstring
-} CeVersion, * PCeVersion;
-
-typedef struct {
- DWORD dwFlags;
- DWORD th32ProcessID;
-} CeCreateToolhelp32Snapshot, * PCeCreateToolhelp32Snapshot;
-
-typedef struct {
- int result;
- int pid;
- int processnamesize;
- //processname
-} CeProcessEntry, * PCeProcessEntry;
-
-typedef struct {
- int result;
- int64_t modulebase;
- int modulesize;
- int modulenamesize;
- //modulename
-} CeModuleEntry, * PCeModuleEntry;
-
-typedef struct {
- uint32_t handle;
- uint64_t address;
- uint32_t size;
- uint8_t compress;
-} CeReadProcessMemoryInput, * PCeReadProcessMemoryInput;
-
-typedef struct {
- int read;
-} CeReadProcessMemoryOutput, * PCeReadProcessMemoryOutput;
-
-typedef struct {
- int32_t handle;
- int64_t address;
- int32_t size;
-} CeWriteProcessMemoryInput, * PCeWriteProcessMemoryInput;
-
-typedef struct {
- int32_t written;
-} CeWriteProcessMemoryOutput, * PCeWriteProcessMemoryOutput;
-
-typedef struct {
- int handle;
- uint64_t baseaddress;
-} CeVirtualQueryExInput, * PCeVirtualQueryExInput;
-
-typedef struct {
- uint8_t result;
- uint32_t protection;
- uint32_t type;
- uint64_t baseaddress;
- uint64_t size;
-} CeVirtualQueryExOutput, * PCeVirtualQueryExOutput;
-
-typedef struct {
- int handle;
- uint8_t flags;
-} CeVirtualQueryExFullInput, * PCeVirtualQueryExFullInput;
-
-typedef struct {
- uint64_t baseaddress;
- uint64_t size;
- uint32_t protection;
- uint32_t type;
-} RegionInfo, * PRegionInfo;
-#pragma pack()
-
-class CEConnection {
-public:
- explicit CEConnection(SOCKET s) : m_sock(s) {}
- SOCKET getSocket(void) { return m_sock; }
- void closeSocket(void) { closesocket(m_sock); }
-
- std::vector<PROCESS_DATA> m_cachedProcesses;
- std::vector<MODULE_DATA> m_cachedModules;
- std::vector<MEMORY_BASIC_INFORMATION> m_cachedPages;
-private:
- SOCKET m_sock;
-}; \ No newline at end of file
diff --git a/CheatEngineServer/CheatEngineServer.cpp b/CheatEngineServer/CheatEngineServer.cpp
deleted file mode 100644
index 547e001..0000000
--- a/CheatEngineServer/CheatEngineServer.cpp
+++ /dev/null
@@ -1,119 +0,0 @@
-#include <winsock2.h>
-#include <ws2tcpip.h>
-#include <stdio.h>
-
-#include <iostream>
-#include <thread>
-
-#include "CheatEngine.h"
-#include "CommandDispatcher.h"
-
-static SOCKET sock;
-static BOOL run_main_loop = TRUE;
-
-static SOCKET make_accept_sock(const char* servspec) {
- const int one = 1;
- struct addrinfo hints = {};
- struct addrinfo* res = 0, * ai = 0, * ai4 = 0;
- SOCKET sock;
-
- hints.ai_family = PF_UNSPEC;
- hints.ai_socktype = SOCK_STREAM;
- hints.ai_flags = AI_PASSIVE;
-
- if (servspec == NULL)
- {
- servspec = "0::0";
- }
- std::cout << "Listen on " << servspec << ":" << CE_PORT << std::endl;
- getaddrinfo(servspec, CE_PORT, &hints, &res);
-
- for (ai = res; ai; ai = ai->ai_next) {
- if (ai->ai_family == PF_INET6) break;
- else if (ai->ai_family == PF_INET) ai4 = ai;
- }
- ai = ai ? ai : ai4;
-
- if (ai == NULL) {
- return NULL;
- }
-
- sock = socket(ai->ai_family, SOCK_STREAM, 0);
- setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (const char*)&one, sizeof(one));
- if (bind(sock, ai->ai_addr, (int)ai->ai_addrlen) != 0)
- {
- std::cout << "bind() failed" << std::endl;
- }
- if (listen(sock, 256) != 0)
- {
- std::cout << "listen() failed" << std::endl;
- }
- freeaddrinfo(res);
-
- return sock;
-}
-
-static void new_connection(SOCKET sock) {
- CEConnection cec(sock);
- std::cout << "New connection .." << std::endl;
- while (run_main_loop == TRUE) {
- if (CheckForAndDispatchCommand(cec) != 0)
- {
- std::cout << "Closing connection .." << std::endl;
- cec.closeSocket();
- break;
- }
- }
-}
-
-static int accept_loop(const char* servspec) {
- sock = make_accept_sock(servspec);
-
- if (sock == NULL)
- {
- return 1;
- }
-
- while (run_main_loop == TRUE) {
- SOCKET new_sock = accept(sock, 0, 0);
- if (new_sock != NULL) {
- std::thread t(new_connection, new_sock);
- t.detach();
- }
- else {
- return 1;
- }
- }
- return 0;
-}
-
-static void onPingThreadTimeout(void) {
- std::cout << "PingThread timeout, abort .." << std::endl;
- run_main_loop = FALSE;
- closesocket(sock);
-}
-
-int main()
-{
- WSADATA wsaData;
- DWORD iResult;
- KInterface& ki = KInterface::getInstance();
-
- std::cout << "KMemDriver Init/Handshake.";
- if (ki.Init() == false || ki.Handshake() == false) {
- std::cout << " Failed. [PRESS RETURN TO EXIT]" << std::endl;
- getchar();
- return 1;
- }
- std::cout << " Ok." << std::endl;
-
- ki.StartPingThread(onPingThreadTimeout);
-
- iResult = WSAStartup(MAKEWORD(2, 2), &wsaData);
- if (iResult != 0) {
- std::cout << "WSAStartup failed: " << iResult << "\n";
- return 1;
- }
-
- return accept_loop("0.0.0.0");
-} \ No newline at end of file
diff --git a/CheatEngineServer/CheatEngineServer.vcxproj b/CheatEngineServer/CheatEngineServer.vcxproj
deleted file mode 100644
index 3beba75..0000000
--- a/CheatEngineServer/CheatEngineServer.vcxproj
+++ /dev/null
@@ -1,174 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" ToolsVersion="15.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>
- <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>15.0</VCProjectVersion>
- <ProjectGuid>{B6441DA8-67E2-47E9-9A10-CD5C90173EAC}</ProjectGuid>
- <Keyword>Win32Proj</Keyword>
- <RootNamespace>CheatEngineServer</RootNamespace>
- <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
- </PropertyGroup>
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
- <ConfigurationType>Application</ConfigurationType>
- <UseDebugLibraries>true</UseDebugLibraries>
- <PlatformToolset>v142</PlatformToolset>
- <CharacterSet>Unicode</CharacterSet>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
- <ConfigurationType>Application</ConfigurationType>
- <UseDebugLibraries>false</UseDebugLibraries>
- <PlatformToolset>v142</PlatformToolset>
- <WholeProgramOptimization>true</WholeProgramOptimization>
- <CharacterSet>Unicode</CharacterSet>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
- <ConfigurationType>Application</ConfigurationType>
- <UseDebugLibraries>true</UseDebugLibraries>
- <PlatformToolset>v142</PlatformToolset>
- <CharacterSet>Unicode</CharacterSet>
- <SpectreMitigation>false</SpectreMitigation>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
- <ConfigurationType>Application</ConfigurationType>
- <UseDebugLibraries>false</UseDebugLibraries>
- <PlatformToolset>v142</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|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>
- <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'">
- <LinkIncremental>false</LinkIncremental>
- <TargetName>$(ProjectName)-kmem</TargetName>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
- <LinkIncremental>true</LinkIncremental>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
- <LinkIncremental>true</LinkIncremental>
- <TargetName>$(ProjectName)-kmem</TargetName>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
- <LinkIncremental>false</LinkIncremental>
- </PropertyGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
- <ClCompile>
- <PrecompiledHeader>
- </PrecompiledHeader>
- <WarningLevel>Level3</WarningLevel>
- <Optimization>MaxSpeed</Optimization>
- <FunctionLevelLinking>true</FunctionLevelLinking>
- <IntrinsicFunctions>true</IntrinsicFunctions>
- <SDLCheck>true</SDLCheck>
- <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <ConformanceMode>true</ConformanceMode>
- <AdditionalIncludeDirectories>$(SolutionDir)include</AdditionalIncludeDirectories>
- </ClCompile>
- <Link>
- <SubSystem>Console</SubSystem>
- <EnableCOMDATFolding>true</EnableCOMDATFolding>
- <OptimizeReferences>true</OptimizeReferences>
- <GenerateDebugInformation>true</GenerateDebugInformation>
- <AdditionalDependencies>kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies);ws2_32.lib;MemDriverLib.lib</AdditionalDependencies>
- <AdditionalLibraryDirectories>$(VCToolsInstallDir)lib\x64;$(OutputPath);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
- </Link>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
- <ClCompile>
- <PrecompiledHeader>
- </PrecompiledHeader>
- <WarningLevel>Level3</WarningLevel>
- <Optimization>Disabled</Optimization>
- <SDLCheck>true</SDLCheck>
- <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <ConformanceMode>true</ConformanceMode>
- </ClCompile>
- <Link>
- <SubSystem>Console</SubSystem>
- <GenerateDebugInformation>true</GenerateDebugInformation>
- </Link>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
- <ClCompile>
- <PrecompiledHeader>
- </PrecompiledHeader>
- <WarningLevel>Level3</WarningLevel>
- <Optimization>Disabled</Optimization>
- <SDLCheck>true</SDLCheck>
- <PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <ConformanceMode>true</ConformanceMode>
- <AdditionalIncludeDirectories>$(SolutionDir)include</AdditionalIncludeDirectories>
- </ClCompile>
- <Link>
- <SubSystem>Console</SubSystem>
- <GenerateDebugInformation>true</GenerateDebugInformation>
- <AdditionalDependencies>kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies);ws2_32.lib;MemDriverLib.lib</AdditionalDependencies>
- <AdditionalLibraryDirectories>$(VCToolsInstallDir)lib\x64;$(OutputPath);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
- </Link>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
- <ClCompile>
- <PrecompiledHeader>
- </PrecompiledHeader>
- <WarningLevel>Level3</WarningLevel>
- <Optimization>MaxSpeed</Optimization>
- <FunctionLevelLinking>true</FunctionLevelLinking>
- <IntrinsicFunctions>true</IntrinsicFunctions>
- <SDLCheck>true</SDLCheck>
- <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <ConformanceMode>true</ConformanceMode>
- </ClCompile>
- <Link>
- <SubSystem>Console</SubSystem>
- <EnableCOMDATFolding>true</EnableCOMDATFolding>
- <OptimizeReferences>true</OptimizeReferences>
- <GenerateDebugInformation>true</GenerateDebugInformation>
- </Link>
- </ItemDefinitionGroup>
- <ItemGroup>
- <ClCompile Include="CheatEngineServer.cpp" />
- <ClCompile Include="CommandDispatcher.cpp" />
- </ItemGroup>
- <ItemGroup>
- <ClInclude Include="CheatEngine.h" />
- <ClInclude Include="CommandDispatcher.h" />
- </ItemGroup>
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
- <ImportGroup Label="ExtensionTargets">
- </ImportGroup>
-</Project> \ No newline at end of file
diff --git a/CheatEngineServer/CheatEngineServer.vcxproj.filters b/CheatEngineServer/CheatEngineServer.vcxproj.filters
deleted file mode 100644
index 2aead5c..0000000
--- a/CheatEngineServer/CheatEngineServer.vcxproj.filters
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <ItemGroup>
- <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="Header Files">
- <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
- <Extensions>h;hh;hpp;hxx;hm;inl;inc;ipp;xsd</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="CheatEngineServer.cpp">
- <Filter>Source Files</Filter>
- </ClCompile>
- <ClCompile Include="CommandDispatcher.cpp">
- <Filter>Source Files</Filter>
- </ClCompile>
- </ItemGroup>
- <ItemGroup>
- <ClInclude Include="CheatEngine.h">
- <Filter>Header Files</Filter>
- </ClInclude>
- <ClInclude Include="CommandDispatcher.h">
- <Filter>Header Files</Filter>
- </ClInclude>
- </ItemGroup>
-</Project> \ No newline at end of file
diff --git a/CheatEngineServer/CommandDispatcher.cpp b/CheatEngineServer/CommandDispatcher.cpp
deleted file mode 100644
index 096e90a..0000000
--- a/CheatEngineServer/CommandDispatcher.cpp
+++ /dev/null
@@ -1,552 +0,0 @@
-#include "CommandDispatcher.h"
-
-#include <winsock.h>
-
-#include <iostream>
-
-#define SPECIAL_TOOLHELP_SNAPSHOT_PROCESS 0x02
-#define SPECIAL_TOOLHELP_SNAPSHOT_PROCESS_HANDLE 0x01;
-
-static char const versionstring[] = "CHEATENGINE Network 2.0";
-
-static int recvall(SOCKET s, void* buf, int size, int flags)
-{
- int totalreceived = 0;
- int sizeleft = size;
- char* buffer = (char*)buf;
-
- flags = flags | MSG_WAITALL;
- while (sizeleft > 0)
- {
- int i = recv(s, &buffer[totalreceived], sizeleft, flags);
- if (i == 0)
- {
- std::wcout << "recv returned 0" << std::endl;
- return i;
- }
- if (i <= -1)
- {
- std::wcout << "recv returned -1" << std::endl;
- if (errno == EINTR)
- {
- std::wcout << "errno = EINTR\n" << std::endl;
- i = 0;
- }
- else
- {
- std::wcout << "Error during recvall: " << (int)i << ". errno=" << errno << "\n" << std::endl;
- return i; //read error, or disconnected
- }
- }
- totalreceived += i;
- sizeleft -= i;
- }
- return totalreceived;
-}
-
-static int sendall(SOCKET s, void* buf, int size, int flags)
-{
- int totalsent = 0;
- int sizeleft = size;
- char* buffer = (char*)buf;
-
- while (sizeleft > 0)
- {
- int i = send(s, &buffer[totalsent], sizeleft, flags);
-
- if (i == 0)
- {
- return i;
- }
- if (i == -1)
- {
- if (errno == EINTR)
- i = 0;
- else
- {
- std::wcout << "Error during sendall: " << (int)i << ". errno=" << errno << "\n" << std::endl;
- return i;
- }
- }
-
- totalsent += i;
- sizeleft -= i;
- }
-
- return totalsent;
-}
-
-CommandReturn DispatchCommand(CEConnection& con, char command)
-{
- CommandReturn cret = CommandReturn::CR_FAIL_UNHANDLED;
- enum ce_command cmd = (enum ce_command)command;
-
- //std::wcout << "Command: " << ce_command_to_string(cmd) << std::endl;
-
- switch (cmd)
- {
- case CMD_GETVERSION: {
- PCeVersion v;
- int versionsize = (int)strlen(versionstring);
- v = (PCeVersion)malloc(sizeof(CeVersion) + versionsize);
- if (v == NULL) {
- cret = CommandReturn::CR_FAIL_ALLOC;
- break;
- }
- v->stringsize = versionsize;
- v->version = 1;
- memcpy((char*)v + sizeof(CeVersion), versionstring, versionsize);
- if (sendall(con.getSocket(), v, sizeof(CeVersion) + versionsize, 0) > 0) {
- cret = CommandReturn::CR_OK;
- }
- else {
- cret = CommandReturn::CR_FAIL_NETWORK;
- free(v);
- }
- }
-
- case CMD_CLOSECONNECTION:
- break;
- case CMD_TERMINATESERVER:
- break;
-
- case CMD_OPENPROCESS: {
- int pid = 0;
-
- if (recvall(con.getSocket(), &pid, sizeof(pid), MSG_WAITALL) > 0)
- {
- //std::wcout << "OpenProcess for PID " << (HANDLE)pid << std::endl;
- if (sendall(con.getSocket(), &pid, sizeof(pid), 0) > 0) {
- cret = CommandReturn::CR_OK;
- }
- else {
- cret = CommandReturn::CR_FAIL_NETWORK;
- }
- }
- else {
- cret = CommandReturn::CR_FAIL_NETWORK;
- }
- break;
- }
-
- case CMD_CREATETOOLHELP32SNAPSHOT: {
- UINT32 result;
- CeCreateToolhelp32Snapshot params;
-
- if (recvall(con.getSocket(), &params, sizeof(CeCreateToolhelp32Snapshot), MSG_WAITALL) > 0)
- {
- //std::wcout << "Calling CreateToolhelp32Snapshot with flags 0x" << std::hex << params.dwFlags
- //<< " for PID 0x" << std::hex << params.th32ProcessID << std::endl;
- if (params.dwFlags == SPECIAL_TOOLHELP_SNAPSHOT_PROCESS) {
- result = SPECIAL_TOOLHELP_SNAPSHOT_PROCESS_HANDLE;
- }
- else {
- result = params.th32ProcessID;
- }
- if (sendall(con.getSocket(), &result, sizeof(result), 0) > 0)
- {
- cret = CommandReturn::CR_OK;
- }
- else {
- cret = CommandReturn::CR_FAIL_NETWORK;
- }
- }
- else {
- cret = CommandReturn::CR_FAIL_NETWORK;
- }
- break;
- }
-
- case CMD_PROCESS32FIRST:
- con.m_cachedProcesses.clear();
- if (KInterface::getInstance().MtProcesses(con.m_cachedProcesses) != true) {
- return CommandReturn::CR_FAIL_KMEM;
- }
- case CMD_PROCESS32NEXT: {
- UINT32 toolhelpsnapshot;
-
- if (recvall(con.getSocket(), &toolhelpsnapshot, sizeof(toolhelpsnapshot), MSG_WAITALL) > 0)
- {
- if (con.m_cachedProcesses.size() > 0) {
- PROCESS_DATA pd = con.m_cachedProcesses[0];
- int imageNameLen = (int)strnlen(pd.ImageName, sizeof(pd.ImageName));
- CeProcessEntry* pcpe = (CeProcessEntry*)malloc(sizeof(*pcpe) + imageNameLen);
-
- if (pcpe == NULL) {
- cret = CommandReturn::CR_FAIL_ALLOC;
- break;
- }
- con.m_cachedProcesses.erase(con.m_cachedProcesses.begin());
- pcpe->pid = (int)((ULONG_PTR)pd.UniqueProcessId);
- pcpe->processnamesize = imageNameLen;
- pcpe->result = 1;
- memcpy(((BYTE*)pcpe) + sizeof(*pcpe), pd.ImageName, imageNameLen);
- if (sendall(con.getSocket(), pcpe, sizeof(*pcpe) + imageNameLen, 0) > 0)
- {
- cret = CommandReturn::CR_OK;
- }
- else {
- cret = CommandReturn::CR_FAIL_NETWORK;
- }
- free(pcpe);
- }
- else {
- CeProcessEntry cpe;
- cpe.pid = 0;
- cpe.processnamesize = 0;
- cpe.result = 0;
- if (sendall(con.getSocket(), &cpe, sizeof(cpe), 0) > 0)
- {
- cret = CommandReturn::CR_OK;
- }
- else {
- cret = CommandReturn::CR_FAIL_NETWORK;
- }
- }
- }
- else {
- cret = CommandReturn::CR_FAIL_NETWORK;
- }
- break;
- }
-
- case CMD_CLOSEHANDLE: {
- UINT32 handle;
- if (recvall(con.getSocket(), &handle, sizeof(handle), MSG_WAITALL) > 0)
- {
- UINT32 r = 1;
- if (sendall(con.getSocket(), &r, sizeof(r), 0) > 0) {
- cret = CommandReturn::CR_OK;
- }
- else {
- cret = CommandReturn::CR_FAIL_NETWORK;
- }
- }
- else {
- cret = CommandReturn::CR_FAIL_NETWORK;
- }
- break;
- }
-
- case CMD_READPROCESSMEMORY: {
- CeReadProcessMemoryInput params;
- PCeReadProcessMemoryOutput out;
- KERNEL_READ_REQUEST krr;
-
- if (recvall(con.getSocket(), &params, sizeof(params), MSG_WAITALL) > 0) {
- if (params.compress != 0) {
- cret = CommandReturn::CR_FAIL_OTHER;
- break;
- }
- out = (PCeReadProcessMemoryOutput)malloc(sizeof(*out) + params.size);
- if (out == NULL) {
- cret = CommandReturn::CR_FAIL_ALLOC;
- break;
- }
-
- if (params.address == NULL) {
- std::wcout << "Got a RPM to NULL, ignore." << std::endl;
- out->read = 0;
- }
- else {
- if (KInterface::getInstance().MtRPM((HANDLE)((ULONG_PTR)params.handle), (PVOID)params.address, (BYTE*)&out[1], params.size, &krr) != true) {
- free(out);
- cret = CommandReturn::CR_FAIL_KMEM;
- break;
- }
- if (params.size != krr.SizeReq || params.size != krr.SizeRes || krr.StatusRes != 0) {
- free(out);
- cret = CommandReturn::CR_FAIL_OTHER;
- break;
- }
- out->read = (int)krr.SizeRes;
- }
- if (sendall(con.getSocket(), out, sizeof(*out) + params.size, 0) > 0)
- {
- free(out);
- cret = CommandReturn::CR_OK;
- break;
- }
- else {
- free(out);
- cret = CommandReturn::CR_FAIL_NETWORK;
- }
- }
- else {
- cret = CommandReturn::CR_FAIL_NETWORK;
- }
- break;
- }
-
- case CMD_WRITEPROCESSMEMORY: {
- break;
- }
-
- case CMD_STARTDEBUG:
- break;
- case CMD_STOPDEBUG:
- break;
- case CMD_WAITFORDEBUGEVENT:
- break;
- case CMD_CONTINUEFROMDEBUGEVENT:
- break;
- case CMD_SETBREAKPOINT:
- break;
- case CMD_REMOVEBREAKPOINT:
- break;
- case CMD_SUSPENDTHREAD:
- break;
- case CMD_RESUMETHREAD:
- break;
- case CMD_GETTHREADCONTEXT:
- break;
- case CMD_SETTHREADCONTEXT:
- break;
-
- case CMD_GETARCHITECTURE: {
- unsigned char arch;
-#ifdef __i386__
- arch = 0;
-#endif
-#ifdef __x86_64__
- arch = 1;
-#endif
-#ifdef __arm__
- arch = 2;
-#endif
-#ifdef __aarch64__
- arch = 3;
-#endif
- if (sendall(con.getSocket(), &arch, sizeof(arch), 0) > 0) {
- cret = CommandReturn::CR_OK;
- }
- else {
- cret = CommandReturn::CR_FAIL_NETWORK;
- }
- break;
- }
-
- case CMD_MODULE32FIRST:
- case CMD_MODULE32NEXT: {
- UINT32 toolhelpsnapshot;
- if (recvall(con.getSocket(), &toolhelpsnapshot, sizeof(toolhelpsnapshot), MSG_WAITALL) > 0)
- {
- if (cmd == CMD_MODULE32FIRST) {
- con.m_cachedModules.clear();
- //std::wcout << "Modules for PID 0x" << std::hex << toolhelpsnapshot << std::endl;
- if (KInterface::getInstance().MtModules((HANDLE)((ULONG_PTR)toolhelpsnapshot), con.m_cachedModules) != true) {
- cret = CommandReturn::CR_FAIL_KMEM;
- break;
- }
- }
- else {
- //std::wcout << "Modules NEXT for PID 0x" << std::hex << toolhelpsnapshot << std::endl;
- }
-
- if (con.m_cachedModules.size() > 0) {
- MODULE_DATA md = con.m_cachedModules[0];
- int imageNameLen = (int)strnlen(md.BaseDllName, sizeof(md.BaseDllName));
- CeModuleEntry* pcme = (CeModuleEntry*)malloc(sizeof(*pcme) + imageNameLen);
-
- if (pcme == NULL) {
- cret = CommandReturn::CR_FAIL_ALLOC;
- break;
- }
- con.m_cachedModules.erase(con.m_cachedModules.begin());
- pcme->modulebase = (INT64)md.DllBase;
- pcme->modulesize = md.SizeOfImage;
- pcme->modulenamesize = imageNameLen;
- pcme->result = 1;
-
- memcpy(((BYTE*)pcme) + sizeof(*pcme), md.BaseDllName, imageNameLen);
- if (sendall(con.getSocket(), pcme, sizeof(*pcme) + imageNameLen, 0) > 0)
- {
- cret = CommandReturn::CR_OK;
- }
- else {
- cret = CommandReturn::CR_FAIL_NETWORK;
- }
- free(pcme);
- }
- else {
- CeModuleEntry cme;
- cme.modulebase = 0;
- cme.modulesize = 0;
- cme.modulenamesize = 0;
- cme.result = 0;
- if (sendall(con.getSocket(), &cme, sizeof(cme), 0) > 0)
- {
- cret = CommandReturn::CR_OK;
- }
- else {
- cret = CommandReturn::CR_FAIL_NETWORK;
- }
- }
- }
- break;
- }
-
- case CMD_GETSYMBOLLISTFROMFILE: {
- UINT32 symbolpathsize;
- if (recvall(con.getSocket(), &symbolpathsize, sizeof(symbolpathsize), MSG_WAITALL) > 0)
- {
- char* symbolpath = (char*)malloc((SIZE_T)symbolpathsize + 1);
- symbolpath[symbolpathsize] = '\0';
- if (recvall(con.getSocket(), symbolpath, symbolpathsize, MSG_WAITALL) > 0)
- {
- //std::wcout << "Symbolpath: " << symbolpath << std::endl;
- UINT64 fail = 0;
- if (sendall(con.getSocket(), &fail, sizeof(fail), 0) > 0)
- {
- cret = CommandReturn::CR_OK;
- }
- else {
- cret = CommandReturn::CR_FAIL_NETWORK;
- }
- }
- else {
- cret = CommandReturn::CR_FAIL_NETWORK;
- }
- }
- break;
- }
-
- case CMD_LOADEXTENSION:
- break;
- case CMD_ALLOC:
- break;
- case CMD_FREE:
- break;
- case CMD_CREATETHREAD:
- break;
- case CMD_LOADMODULE:
- break;
- case CMD_SPEEDHACK_SETSPEED:
- break;
-
- case CMD_VIRTUALQUERYEXFULL: {
- CeVirtualQueryExFullInput params;
- if (recvall(con.getSocket(), &params, sizeof(params), MSG_WAITALL) > 0) {
- con.m_cachedPages.clear();
- if (KInterface::getInstance().MtPages((HANDLE)((ULONG_PTR)params.handle), con.m_cachedPages) != true) {
- cret = CommandReturn::CR_FAIL_KMEM;
- break;
- }
- UINT32 count = (UINT32)con.m_cachedPages.size();
- if (sendall(con.getSocket(), &count, sizeof(count), 0) <= 0)
- {
- cret = CommandReturn::CR_FAIL_NETWORK;
- break;
- }
- cret = CommandReturn::CR_OK;
- for (auto& page : con.m_cachedPages) {
- if (KInterface::PageIsFreed(page) == true || KInterface::PageIsPrivateReserved(page) == true)
- {
- continue;
- }
- RegionInfo out;
- out.baseaddress = (UINT64)page.BaseAddress;
- out.protection = page.Protect;
- out.size = page.RegionSize;
- out.type = page.Type;
- if (sendall(con.getSocket(), &out, sizeof(out), 0) <= 0)
- {
- cret = CommandReturn::CR_FAIL_NETWORK;
- }
- }
- }
- else {
- cret = CommandReturn::CR_FAIL_NETWORK;
- }
- break;
- }
-
- case CMD_GETREGIONINFO:
- break;
-
- case CMD_VIRTUALQUERYEX: {
- CeVirtualQueryExInput params;
- if (recvall(con.getSocket(), &params, sizeof(params), MSG_WAITALL) > 0) {
- con.m_cachedPages.clear();
- if (KInterface::getInstance().MtPages((HANDLE)((ULONG_PTR)params.handle), con.m_cachedPages, (PVOID)params.baseaddress) != true ||
- con.m_cachedPages.size() == 0)
- {
- cret = CommandReturn::CR_FAIL_KMEM;
- break;
- }
- SIZE_T i = 0;
- for (auto& page : con.m_cachedPages) {
- if (KInterface::PageIsFreed(page) == false && KInterface::PageIsPrivateReserved(page) == false)
- {
- break;
- }
- i++;
- }
- if (i == con.m_cachedPages.size()) {
- cret = CommandReturn::CR_FAIL_KMEM;
- break;
- }
- std::wcout << "---" << con.m_cachedPages[i].BaseAddress << std::endl;
- CeVirtualQueryExOutput out;
- out.baseaddress = (UINT64)con.m_cachedPages[i].BaseAddress;
- out.protection = con.m_cachedPages[i].Protect;
- out.size = con.m_cachedPages[i].RegionSize;
- out.type = con.m_cachedPages[i].Type;
- out.result = sizeof(MEMORY_BASIC_INFORMATION);
- if (sendall(con.getSocket(), &out, sizeof(out), 0) > 0) {
- cret = CommandReturn::CR_OK;
- }
- else {
- cret = CommandReturn::CR_FAIL_NETWORK;
- }
- }
- break;
- }
-
- case CMD_AOBSCAN:
- break;
- case CMD_COMMANDLIST2:
- break;
- }
-
- return cret;
-}
-
-int CheckForAndDispatchCommand(CEConnection& con)
-{
- int r;
- char command;
-
- r = recv(con.getSocket(), &command, 1, 0);
- if (r == 1)
- {
- enum ce_command cmd = (enum ce_command)command;
-
- switch (DispatchCommand(con, cmd))
- {
- case CommandReturn::CR_FAIL_UNHANDLED:
- std::wcout << "Unhandled command: " << ce_command_to_string(cmd) << std::endl;
- return 1;
- case CommandReturn::CR_FAIL_OTHER:
- std::wcout << "Unknown error for command: " << ce_command_to_string(cmd) << std::endl;
- return 1;
- case CommandReturn::CR_FAIL_NETWORK:
- std::wcout << "Network error for command: " << ce_command_to_string(cmd) << std::endl;
- return 1;
- case CommandReturn::CR_FAIL_KMEM:
- std::wcout << "Internal KMemDriver API error for command: " << ce_command_to_string(cmd) << std::endl;
- return 1;
- case CommandReturn::CR_FAIL_ALLOC:
- std::wcout << "Memory allocation failed for command: " << ce_command_to_string(cmd) << std::endl;
- return 1;
- case CommandReturn::CR_OK:
- break;
- }
- }
- else {
- std::wcout << "Command recv returned: " << r << std::endl;
- return 1;
- }
-
- return 0;
-} \ No newline at end of file
diff --git a/CheatEngineServer/CommandDispatcher.h b/CheatEngineServer/CommandDispatcher.h
deleted file mode 100644
index 51f9d68..0000000
--- a/CheatEngineServer/CommandDispatcher.h
+++ /dev/null
@@ -1,11 +0,0 @@
-#pragma once
-
-#include "CheatEngine.h"
-
-enum class CommandReturn {
- CR_OK, CR_FAIL_UNHANDLED, CR_FAIL_ALLOC, CR_FAIL_NETWORK, CR_FAIL_KMEM, CR_FAIL_OTHER
-};
-
-int CheckForAndDispatchCommand(CEConnection& con);
-
-enum CommandReturn DispatchCommand(CEConnection& con, char command); \ No newline at end of file
diff --git a/KMemDriver.sln b/KMemDriver.sln
index b33cf9d..ee64766 100644
--- a/KMemDriver.sln
+++ b/KMemDriver.sln
@@ -14,11 +14,6 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "IntegrationTest", "Integrat
{B6790A97-6995-46B6-AD73-AC5BC4AC76DB} = {B6790A97-6995-46B6-AD73-AC5BC4AC76DB}
EndProjectSection
EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CheatEngineServer", "CheatEngineServer\CheatEngineServer.vcxproj", "{B6441DA8-67E2-47E9-9A10-CD5C90173EAC}"
- ProjectSection(ProjectDependencies) = postProject
- {B6790A97-6995-46B6-AD73-AC5BC4AC76DB} = {B6790A97-6995-46B6-AD73-AC5BC4AC76DB}
- EndProjectSection
-EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
@@ -41,10 +36,6 @@ Global
{AD4E6887-32BA-4CC9-924C-18F0ECAFB576}.Debug|x64.Build.0 = Debug|x64
{AD4E6887-32BA-4CC9-924C-18F0ECAFB576}.Release|x64.ActiveCfg = Release|x64
{AD4E6887-32BA-4CC9-924C-18F0ECAFB576}.Release|x64.Build.0 = Release|x64
- {B6441DA8-67E2-47E9-9A10-CD5C90173EAC}.Debug|x64.ActiveCfg = Debug|x64
- {B6441DA8-67E2-47E9-9A10-CD5C90173EAC}.Debug|x64.Build.0 = Debug|x64
- {B6441DA8-67E2-47E9-9A10-CD5C90173EAC}.Release|x64.ActiveCfg = Release|x64
- {B6441DA8-67E2-47E9-9A10-CD5C90173EAC}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE