mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-24 06:15:35 +08:00
25 lines
702 B
C++
25 lines
702 B
C++
#include"TerraLunar.h"
|
|
|
|
|
|
bool TerraLunar::attach_function() {
|
|
const BYTE bytes[] = {
|
|
//らくえん~あいかわらずなぼく。の場合~
|
|
0x8A,0x08,
|
|
0x81,0xF9,0x9F,0x00,0x00,0x00,
|
|
0x7E
|
|
};
|
|
auto addrs = Util::SearchMemory(bytes, sizeof(bytes), PAGE_EXECUTE, processStartAddress, processStopAddress);
|
|
auto succ=false;
|
|
for (auto addr : addrs) {
|
|
HookParam hp;
|
|
hp.address = addr;
|
|
hp.offset=get_reg(regs::eax);
|
|
hp.type = USING_STRING;
|
|
hp.filter_fun=[](void* data, size_t* len, HookParam* hp){
|
|
StringFilter(reinterpret_cast<char*>(data), len , "[w]", 3);
|
|
return true;
|
|
};
|
|
succ|=NewHook(hp, "TerraLunar");
|
|
}
|
|
return succ;
|
|
}
|