Hi can anyone help me reading the source code of a dynamic-link library? The DLL is attached. Thank you everyone
You seem to have no idea what u are talking about, u cant just read the source code of any dll u want lol..Quote:
Hi can anyone help me reading the source code of a dynamic-link library? The DLL is attached. Thank you everyone
DWORD WINAPI HackThread(LPVOID lpThreadParameter)
{
while (true)
{
*(uint32_t*)0x2EF9B40 = 0x41700000;
*(uint32_t*)0x2EF9B70 = 0x41700000;
Sleep(100);
}
return 0;
}
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
if (fdwReason == DLL_PROCESS_ATTACH)
CloseHandle(CreateThread(nullptr, 0, &HackThread, hinstDLL, 0, nullptr));
return TRUE;
}