From 8094f2fe22c9abc7aa4bc7e28a51a9de2dbae98d Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Wed, 25 Mar 2020 22:36:35 +0100 Subject: added CSGO cheat whcih instruments a non-public r0 interface Signed-off-by: Toni Uhlig --- .gitignore | 7 ++ cheats.sln | 31 +++++ csgo_radar_kmem/CSGO.cpp | 225 +++++++++++++++++++++++++++++++++++ csgo_radar_kmem/CSGO.vcxproj | 184 ++++++++++++++++++++++++++++ csgo_radar_kmem/CSGO.vcxproj.filters | 33 +++++ csgo_radar_kmem/CSGO.vcxproj.user | 4 + csgo_radar_kmem/KInterface.h | 3 + csgo_radar_kmem/pch.cpp | 5 + csgo_radar_kmem/pch.h | 14 +++ 9 files changed, 506 insertions(+) create mode 100644 cheats.sln create mode 100644 csgo_radar_kmem/CSGO.cpp create mode 100644 csgo_radar_kmem/CSGO.vcxproj create mode 100644 csgo_radar_kmem/CSGO.vcxproj.filters create mode 100644 csgo_radar_kmem/CSGO.vcxproj.user create mode 100644 csgo_radar_kmem/KInterface.h create mode 100644 csgo_radar_kmem/pch.cpp create mode 100644 csgo_radar_kmem/pch.h diff --git a/.gitignore b/.gitignore index d3ffd22..e1cab1e 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,11 @@ *.exe *.o +*.obj *.d +*.tlog +*.log +*.pdb +*.idb +*.pch +/.vs diff --git a/cheats.sln b/cheats.sln new file mode 100644 index 0000000..1481674 --- /dev/null +++ b/cheats.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.28307.1062 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CSGO", "csgo_radar_kmem\CSGO.vcxproj", "{65C081C2-3A90-470C-BF06-AFF2EEB00C25}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {65C081C2-3A90-470C-BF06-AFF2EEB00C25}.Debug|x64.ActiveCfg = Debug|x64 + {65C081C2-3A90-470C-BF06-AFF2EEB00C25}.Debug|x64.Build.0 = Debug|x64 + {65C081C2-3A90-470C-BF06-AFF2EEB00C25}.Debug|x86.ActiveCfg = Debug|Win32 + {65C081C2-3A90-470C-BF06-AFF2EEB00C25}.Debug|x86.Build.0 = Debug|Win32 + {65C081C2-3A90-470C-BF06-AFF2EEB00C25}.Release|x64.ActiveCfg = Release|x64 + {65C081C2-3A90-470C-BF06-AFF2EEB00C25}.Release|x64.Build.0 = Release|x64 + {65C081C2-3A90-470C-BF06-AFF2EEB00C25}.Release|x86.ActiveCfg = Release|Win32 + {65C081C2-3A90-470C-BF06-AFF2EEB00C25}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {D9DC3E94-A8B8-4C6E-9238-A30EF79C3C86} + EndGlobalSection +EndGlobal diff --git a/csgo_radar_kmem/CSGO.cpp b/csgo_radar_kmem/CSGO.cpp new file mode 100644 index 0000000..775477a --- /dev/null +++ b/csgo_radar_kmem/CSGO.cpp @@ -0,0 +1,225 @@ +#include "pch.h" +#include "KInterface.h" + +#include +#include +#include +#include +#include + +static BOOL running = false; +static const wchar_t *wName = L"Counter-Strike: Global Offensive"; + +typedef struct player_info_s +{ + __int64 unknown; //0x0000 + union + { + __int64 steamID64; //0x0008 - SteamID64 + struct + { + __int32 xuid_low; + __int32 xuid_high; + }; + }; + char szName[128]; //0x0010 - Player Name + int userId; //0x0090 - Unique Server Identifier + char szSteamID[20]; //0x0094 - STEAM_X:Y:Z + char pad_0x00A8[0x10]; //0x00A8 + unsigned long iSteamID; //0x00B8 - SteamID + char szFriendsName[128]; + bool fakeplayer; + bool ishltv; + unsigned int customfiles[4]; + unsigned char filesdownloaded; +} player_info_t; + + +static bool consoleHandler(int signal) { + if (signal == CTRL_C_EVENT) { + if (!running) + exit(EXIT_FAILURE); + running = false; + std::wcout << L"Waiting for graceful shutdown .." << std::endl; + } + return true; +} + +static BOOL CALLBACK enumWindowsProc(HWND hWnd, LPARAM lParam) +{ + int length = GetWindowTextLength(hWnd); + TCHAR* buffer; + buffer = new TCHAR[length + 1]; + memset(buffer, 0, (length + 1) * sizeof(TCHAR)); + GetWindowText(hWnd, buffer, length + 1); + //wprintf(L"Window: '%ls'\n", buffer); + if (!wcscmp(buffer, wName)) + *(HWND *)lParam = hWnd; + delete[] buffer; + return TRUE; +} + +int wmain(int argc, wchar_t **argv) +{ + HANDLE targetPID = 0; + PVOID buf; + HANDLE kevent; + HANDLE uevent; + + KInterface &ki = KInterface::getInstance(); + std::vector pages; + std::vector modules; + + std::wcout << L"Waiting for window title: '" << wName << L"'" << std::endl; + + HWND targetHWND = NULL; + while (1) { + if (!EnumWindows(enumWindowsProc, (LPARAM)&targetHWND)) { + return 1; + } + if (targetHWND) { + std::wcout << L"Found window '" << wName << L"' with Handle 0x" + << std::hex << targetHWND << std::endl; + break; + } + Sleep(1000); + } + GetWindowThreadProcessId(targetHWND, (LPDWORD)&targetPID); + + SetConsoleCtrlHandler((PHANDLER_ROUTINE)consoleHandler, TRUE); + + if (!ki.Init()) { + std::wcout << L"Kernel Interface Init() failed" << std::endl; + return 1; + } + + try { + buf = ki.getBuffer(); + kevent = ki.getKHandle(); + uevent = ki.getUHandle(); + } + catch (std::runtime_error& err) { + std::wcout << err.what() << std::endl; + return 1; + } + + std::wcout << L"Buffer.: " << buf << std::endl; + std::wcout << L"KHandle: " << kevent << std::endl; + std::wcout << L"UHandle: " << uevent << std::endl; + + if (!ki.Handshake()) { + std::wcout << L"Kernel Interface Handshake() failed" << std::endl; + return 1; + } + + if (!ki.Modules(targetPID, modules)) + std::wcout << L"Kernel Interface Modules() failed with 0x" + << std::hex << ki.getLastNtStatus() << std::endl; + else std::wcout << L"Got " << std::dec << modules.size() << L" modules for pid 0x" + << std::hex << targetPID << std::endl; +#if 0 + if (!ki.Pages(targetPID, pages)) + std::wcout << L"Kernel Interface Pages() failed with 0x" + << std::hex << ki.getLastNtStatus() << std::endl; + else std::wcout << L"Got " << std::dec << pages.size() << L" mapped pages for pid 0x" + << std::hex << targetPID << std::endl; +#endif + + MODULE_DATA *engineDLL = NULL; + MODULE_DATA *clientDLL = NULL; + for (MODULE_DATA& md : modules) { + if (strncmp(md.BaseDllName, "engine.dll", sizeof md.BaseDllName) == 0) { + std::wcout << L"FOUND ENGINE DLL at " << std::hex << md.DllBase << "!!!" << std::endl; + engineDLL = &md; + } + if (strncmp(md.BaseDllName, "client_panorama.dll", sizeof md.BaseDllName) == 0) { + std::wcout << L"FOUND CLIENT DLL at " << std::hex << md.DllBase << "!!!" << std::endl; + clientDLL = &md; + } + } + + running = TRUE; + do { + if (engineDLL) { + /* unused */ + } + + if (clientDLL) { + DWORD dwLocalPlayer = 13580876; + PVOID localPlayerPtr = (PVOID)((ULONG_PTR)clientDLL->DllBase + dwLocalPlayer); + localPlayerPtr = (PVOID)((ULONG_PTR)KMemory::Rpm(targetPID, localPlayerPtr)); + std::wcout << L"localPlayerPtr..................: " << std::hex << localPlayerPtr << std::endl; + + DWORD dwEntityList = 80763620; + PVOID entityListPtr = (PVOID)((ULONG_PTR)clientDLL->DllBase + dwEntityList); + std::wcout << L"client_panorama.dll+dwEntityList: " << std::hex << entityListPtr << std::endl; + + for (size_t i = 0; i < 32; ++i) { + PVOID entityPtr = (PVOID)((ULONG_PTR)entityListPtr + (i * 0x10)); + try { + entityPtr = (PVOID)((ULONG_PTR)KMemory::Rpm(targetPID, entityPtr)); + if (!entityPtr) { + continue; + } + } + catch (std::runtime_error &) { + continue; + } + + DWORD dwHealth = 256; + PVOID healthPtr = (PVOID)((ULONG_PTR)entityPtr + dwHealth); + DWORD health; + try { + health = KMemory::Rpm(targetPID, healthPtr); + } + catch (std::runtime_error &) { + continue; + } + + std::wcout << L"entityPtr.......................: " << std::hex << entityPtr << " -> " << std::dec << health << std::endl; + + DWORD dwSpotted = 2365; + PVOID spottedPtr = (PVOID)((ULONG_PTR)entityPtr + dwSpotted); + DWORD spotted = KMemory::Rpm(targetPID, spottedPtr); + DWORD dwSpottedBy = 2432; + PVOID spottedByPtr = (PVOID)((ULONG_PTR)entityPtr + dwSpottedBy); + DWORD spottedBy = KMemory::Rpm(targetPID, spottedByPtr); + if (spotted) { + spotted = 0; + } + else { + spotted = 1; + spottedBy |= 0xFF; + KMemory::Wpm(targetPID, spottedByPtr, &spottedBy); + } + KMemory::Wpm(targetPID, spottedPtr, &spotted); + //std::wcout << L"Sp: " << spotted << std::endl; + } + + std::this_thread::sleep_for(std::chrono::microseconds(250000)); + } else + + if (ki.RecvWait() == SRR_TIMEOUT) { + std::wcout << L"Ping -> "; + if (!ki.Ping()) { + std::wcout << L"Got no valid PONG, abort!" << std::endl; + running = FALSE; + } + else std::wcout << L"PONG!" << std::endl; + } + + if (!running) + break; + + try { + if (targetPID) { + } + } + catch (std::runtime_error& err) { + std::wcout << err.what() << std::endl; + } + } while (running); + + std::wcout << L"Driver shutdown .." << std::endl; + ki.Exit(); +} \ No newline at end of file diff --git a/csgo_radar_kmem/CSGO.vcxproj b/csgo_radar_kmem/CSGO.vcxproj new file mode 100644 index 0000000..6a6b22e --- /dev/null +++ b/csgo_radar_kmem/CSGO.vcxproj @@ -0,0 +1,184 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {65C081C2-3A90-470C-BF06-AFF2EEB00C25} + Win32Proj + CSGO + 10.0.17763.0 + + + + Application + true + v141 + Unicode + false + + + Application + false + v141 + true + Unicode + false + + + Application + true + v141 + Unicode + Static + false + + + Application + false + v141 + true + Unicode + false + + + + + + + + + + + + + + + + + + + + + true + $(ProjectName)-kmem + + + true + + + false + + + false + $(ProjectName)-kmem + + + + Use + Level3 + Disabled + true + _DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + pch.h + MultiThreadedDebugDLL + $(ProjectDir) + + + Console + true + $(VCToolsInstallDir)lib\x64;$(OutputPath);%(AdditionalLibraryDirectories) + kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;MemDriverLib.lib;%(AdditionalDependencies) + + + + + Use + Level3 + Disabled + true + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + pch.h + $(ProjectDir) + + + Console + true + + + + + Use + Level3 + MaxSpeed + true + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + pch.h + $(ProjectDir) + + + Console + true + true + true + + + + + Use + Level3 + MaxSpeed + true + true + true + NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + pch.h + MultiThreadedDLL + $(ProjectDir) + + + Console + true + true + true + + + + + + + + + + Create + Create + Create + Create + + + + + + \ No newline at end of file diff --git a/csgo_radar_kmem/CSGO.vcxproj.filters b/csgo_radar_kmem/CSGO.vcxproj.filters new file mode 100644 index 0000000..382f683 --- /dev/null +++ b/csgo_radar_kmem/CSGO.vcxproj.filters @@ -0,0 +1,33 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Header Files + + + Header Files + + + + + Source Files + + + Source Files + + + \ No newline at end of file diff --git a/csgo_radar_kmem/CSGO.vcxproj.user b/csgo_radar_kmem/CSGO.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/csgo_radar_kmem/CSGO.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/csgo_radar_kmem/KInterface.h b/csgo_radar_kmem/KInterface.h new file mode 100644 index 0000000..315bfdc --- /dev/null +++ b/csgo_radar_kmem/KInterface.h @@ -0,0 +1,3 @@ +#pragma once + +#error "This CHEAT requires an additional non-public library. Nice try pasta kid.." diff --git a/csgo_radar_kmem/pch.cpp b/csgo_radar_kmem/pch.cpp new file mode 100644 index 0000000..3a3d12b --- /dev/null +++ b/csgo_radar_kmem/pch.cpp @@ -0,0 +1,5 @@ +// pch.cpp: source file corresponding to pre-compiled header; necessary for compilation to succeed + +#include "pch.h" + +// In general, ignore this file, but keep it around if you are using pre-compiled headers. diff --git a/csgo_radar_kmem/pch.h b/csgo_radar_kmem/pch.h new file mode 100644 index 0000000..b04e71e --- /dev/null +++ b/csgo_radar_kmem/pch.h @@ -0,0 +1,14 @@ +// Tips for Getting Started: +// 1. Use the Solution Explorer window to add/manage files +// 2. Use the Team Explorer window to connect to source control +// 3. Use the Output window to see build output and other messages +// 4. Use the Error List window to view errors +// 5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project +// 6. In the future, to open this project again, go to File > Open > Project and select the .sln file + +#ifndef PCH_H +#define PCH_H + +// TODO: add headers that you want to pre-compile here + +#endif //PCH_H -- cgit v1.2.3