diff options
Diffstat (limited to 'hunt.cpp')
-rw-r--r-- | hunt.cpp | 154 |
1 files changed, 154 insertions, 0 deletions
diff --git a/hunt.cpp b/hunt.cpp new file mode 100644 index 0000000..c1125cf --- /dev/null +++ b/hunt.cpp @@ -0,0 +1,154 @@ +#include <ntddk.h> + +#include <EASTL/array.h> +#include <EASTL/unordered_map.h> +#include <eastl_compat.hpp> +#include <DriverThread.hpp> +#include <obfuscate.hpp> + +#include "memory.hpp" +#include "stringify.hpp" + +using namespace DriverThread; + +static Thread thread; +static Event shutdown_event; +static auto targetProcess = skCrypt(L"HuntGame.exe"); +static auto targetModule = skCrypt(L"GameHunt.DLL"); + +enum ColorType : uint32_t { + Pink = 0xFFA0FFFF, + Red = 0xFF0000FF, + Green = 0x00FF00FF, + Blue = 0x0000FFFF, + Cyan = 0x00FFFFFF, + Orange = 0xFFA500FF, + Yellow = 0xFFFF00FF, + White = 0xFFFFFFFF +}; + +static uint64_t SearchHuntProcess(void) { + const auto &procs = ::GetProcesses(); + const auto &found = eastl::find_if(procs.begin(), procs.end(), + [](const auto &item) { + if (item.ProcessName == targetProcess) + return true; + return false; + }); + + if (found == procs.end()) { + return 0; + } + + return found->UniqueProcessId; +} + +extern "C" { +DRIVER_INITIALIZE DriverEntry; +DRIVER_UNLOAD DriverUnload; + +NTSTATUS DriverEntry(_In_ struct _DRIVER_OBJECT *DriverObject, + _In_ PUNICODE_STRING RegistryPath) { + UNREFERENCED_PARAMETER(DriverObject); + UNREFERENCED_PARAMETER(RegistryPath); + + auto args = eastl::make_shared<ThreadArgs>(); + thread.Start( + [](eastl::shared_ptr<ThreadArgs> args) { + UNREFERENCED_PARAMETER(args); + + HANDLE hunt_pid = NULL; + PEPROCESS pep = NULL; + HANDLE obj = NULL; + uint64_t base = 0; + LONGLONG wait_timeout = (-1LL) * 10LL * 1000LL * 250LL; + + DbgPrint("%s\n", "start"); + while (shutdown_event.Wait(wait_timeout) == STATUS_TIMEOUT) { + if (!hunt_pid) { + wait_timeout = (-1LL) * 10LL * 1000LL * 1000LL; + hunt_pid = reinterpret_cast<HANDLE>(SearchHuntProcess()); + if (hunt_pid == NULL) { + continue; + } + DbgPrint(skCrypt("pid: %p\n"), hunt_pid); + + if (!NT_SUCCESS(::OpenProcess(hunt_pid, &pep, &obj))) { + hunt_pid = NULL; + continue; + } + + base = 0; + while (!base && hunt_pid) { + LARGE_INTEGER wait = {.QuadPart = (-1LL) * 10LL * 1000LL * 5000LL}; + KeDelayExecutionThread(KernelMode, FALSE, &wait); + + const auto mods = ::GetModules(pep, FALSE); + for (const auto &mod : mods) { + if (mod.BaseDllName == targetModule) { + base = mod.DllBase; + break; + } + } + + hunt_pid = reinterpret_cast<HANDLE>(SearchHuntProcess()); + } + + if (!hunt_pid) { + LARGE_INTEGER wait = {.QuadPart = (-1LL) * 10LL * 1000LL * 5000LL}; + KeDelayExecutionThread(KernelMode, FALSE, &wait); + ::CloseProcess(&pep, &obj); + continue; + } + } + + // Offsets stolen from: https://www.unknowncheats.me/forum/3809820-post343.html + Memory memory(pep); + auto sys_global_env = memory.Read<uint64_t>(base + 0x5EF2FA0); + + auto entity_system = memory.Read<uint64_t>(sys_global_env + 0xA8); + uint16_t number_of_objects = memory.Read<uint16_t>(entity_system + 0x4006A); + uint64_t entity_list = entity_system + 0x40078; + + uint8_t hunters = 0; + for (decltype(number_of_objects) i = 0; i < number_of_objects; ++i) { + auto entity = memory.Read<uint64_t>(entity_list + i * sizeof(uint64_t)); + if (!entity) + continue; + + auto entity_name_ptr = memory.Read<uint64_t>(entity + 0x10); + char entity_name[128] = {}; + memory.ReadString<sizeof(entity_name)>(entity_name_ptr, entity_name); + + if (strncmp(entity_name, skCrypt("ShootingRange_Target"), sizeof("ShootingRange_Target") - 1) == 0 || + strncmp(entity_name, skCrypt("HunterBasic"), sizeof("HunterBasic") - 1) == 0) { + hunters++; + + auto slots_ptr = memory.Read<uint64_t>(entity + 0xA8); + auto slot_ptr = memory.Read<uint64_t>(slots_ptr + 0); + auto render_node_ptr = memory.Read<uint64_t>(slot_ptr + 0xA8); + + auto rgba_color = memory.Read<uint32_t>(render_node_ptr + 0x3C); + if (rgba_color != ColorType::Cyan /* team */) { + memory.Write<uint32_t>(render_node_ptr + 0x28, 0x80018); + memory.Write<uint32_t>(render_node_ptr + 0x3C, ColorType::Pink); + } + } + } + } + + return STATUS_SUCCESS; + }, + args); + + return STATUS_SUCCESS; +} + +VOID DriverUnload(_In_ struct _DRIVER_OBJECT *DriverObject) { + UNREFERENCED_PARAMETER(DriverObject); + + DbgPrint("%s\n", "Waiting for thread termination.."); + shutdown_event.Notify(); + thread.WaitForTermination(); +} +} |