恍兮惚兮 f2315a7884 .
2024-12-09 21:06:21 +08:00

33 lines
819 B
C++

#include "Winters.h"
bool Winters::attach_function()
{
// こんな魔法少女…アタシはレミィ
// https://vndb.org/v11018
const BYTE bytes[] = {
0x4a,
0x8b, 0xda,
0xc1, 0xe3, 0x02,
0x8d, 0x1c, 0x9b,
0x8b, 0xcb,
0x83, 0xc1, 0x11,
0xba, 0x19, 0x00, 0x00, 0x00,
0xe8, XX4};
ULONG addr = MemDbg::findBytes(bytes, sizeof(bytes), processStartAddress, processStopAddress);
if (!addr)
return false;
auto off = *(DWORD *)(addr + sizeof(bytes) - 4);
auto target = off + addr + sizeof(bytes);
HookParam hp;
hp.address = target;
hp.offset = stackoffset(1);
hp.type = USING_STRING;
hp.filter_fun = [](TextBuffer *buffer, HookParam *)
{
static int idx = 0;
if ((idx++) % 2)
buffer->clear();
};
return NewHook(hp, "Winters");
}