2022-12-18 01:00:04 +01:00
|
|
|
#include "hooking.hpp"
|
|
|
|
#include "pointers.hpp"
|
|
|
|
|
2023-06-14 21:29:25 +00:00
|
|
|
#include <Psapi.h>
|
|
|
|
|
2022-12-18 01:00:04 +01:00
|
|
|
namespace big
|
|
|
|
{
|
2023-06-14 21:29:25 +00:00
|
|
|
bool inline is_address_in_game_region(uint64_t address)
|
|
|
|
{
|
|
|
|
static uint64_t moduleBase = NULL;
|
|
|
|
static uint64_t moduleSize = NULL;
|
|
|
|
if ((!moduleBase) || (!moduleSize))
|
|
|
|
{
|
|
|
|
MODULEINFO info;
|
|
|
|
if (!GetModuleInformation(GetCurrentProcess(), GetModuleHandle(0), &info, sizeof(info)))
|
|
|
|
{
|
|
|
|
LOG(FATAL) << "GetModuleInformation failed!";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
moduleBase = (uint64_t)GetModuleHandle(0);
|
|
|
|
moduleSize = (uint64_t)info.SizeOfImage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return address > moduleBase && address < (moduleBase + moduleSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool is_jump(__int64 fptr)
|
|
|
|
{
|
|
|
|
if (!is_address_in_game_region(fptr))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
auto value = *(std::uint8_t*)(fptr);
|
|
|
|
return value == 0xE9;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool is_unwanted_dependency(__int64 cb)
|
|
|
|
{
|
|
|
|
auto f1 = *(__int64*)(cb + 0x60);
|
|
|
|
auto f2 = *(__int64*)(cb + 0x100);
|
|
|
|
auto f3 = *(__int64*)(cb + 0x1A0);
|
|
|
|
|
|
|
|
if (!is_address_in_game_region(f1) || !is_address_in_game_region(f2) || !is_address_in_game_region(f3))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return is_jump(f1) || is_jump(f2) || is_jump(f3);
|
|
|
|
}
|
|
|
|
|
2023-03-01 21:27:15 +00:00
|
|
|
void hooks::queue_dependency(void* dependency)
|
|
|
|
{
|
2023-06-14 21:29:25 +00:00
|
|
|
if (is_unwanted_dependency((__int64)dependency))
|
2023-03-01 21:27:15 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2022-12-18 01:00:04 +01:00
|
|
|
|
2023-03-01 21:27:15 +00:00
|
|
|
return g_hooking->get_original<hooks::queue_dependency>()(dependency);
|
|
|
|
}
|
2022-12-18 01:00:04 +01:00
|
|
|
}
|