iw4x-client/src/Components/Modules/Ceg.cpp

53 lines
1.4 KiB
C++
Raw Normal View History

2022-05-27 08:15:03 -04:00
#include <STDInclude.hpp>
namespace Components
{
Ceg::Ceg()
{
Utils::Hook::Signature signature(0x401000, 0x340000);
2022-05-27 08:15:03 -04:00
// Generic killer caller.
signature.add({
"\x56\x8B\x00\x24\x0c\x85\xF6\x7F\x0E", "xx?xxxxxx", [](char* address)
{
Utils::Hook::Set<BYTE>(address, 0xC3);
}
});
signature.process();
// Some more generic obfuscation (mov al, 1; retn)
Utils::Hook::Set<DWORD>(0x471B20, 0xC301B0);
Utils::Hook::Set<DWORD>(0x43A070, 0xC301B0);
Utils::Hook::Set<DWORD>(0x4C8B30, 0xC301B0);
Utils::Hook::Set<DWORD>(0x469340, 0xC301B0);
// Other checks
Utils::Hook::Set<DWORD>(0x401000, 0xC301B0);
Utils::Hook::Set<DWORD>(0x45F8B0, 0xC301B0);
Utils::Hook::Set<DWORD>(0x46FAE0, 0xC301B0);
// Removed in 159 SP binaries
Utils::Hook::Nop(0x46B173, 9);
Utils::Hook::Nop(0x43CA16, 9);
Utils::Hook::Nop(0x505426, 9);
// Disable some checks on certain game events
Utils::Hook::Nop(0x43EC96, 9);
Utils::Hook::Nop(0x4675C6, 9);
2022-05-27 08:15:03 -04:00
// Random checks scattered throughout the binary
Utils::Hook::Set<BYTE>(0x499F90, 0xC3);
Utils::Hook::Set<BYTE>(0x4FC700, 0xC3);
Utils::Hook::Set<BYTE>(0x4C4170, 0xC3);
Utils::Hook::Set<BYTE>(0x49E8C0, 0xC3);
Utils::Hook::Set<BYTE>(0x42DB00, 0xC3);
Utils::Hook::Set<BYTE>(0x4F4CF0, 0xC3);
2022-06-26 06:26:18 -04:00
Utils::Hook::Set<BYTE>(0x432180, 0xC3);
2022-06-26 06:59:30 -04:00
Utils::Hook::Set<BYTE>(0x461930, 0xC3);
2022-07-05 12:43:24 -04:00
// Looking for stuff in the registry
Utils::Hook::Nop(0x4826F8, 5);
2022-05-27 08:15:03 -04:00
}
}