Posted December 26, 20177 yr Is there any way please (code or tool) for x64 '.dll' files inline patching ? I will be a great favor. Thanks.
January 18, 20187 yr Solution for what ?! No one will write the code for you. show us what you have and where you failed and we may help.
January 18, 20187 yr Author Well to be more precise, I'm looking for a way from where I can start coding. an example of x64 exe/dll in-memory patching... Anyway thanks Kurapica and sorry if I'm nagging.
January 18, 20187 yr research OpenProcess, CreateProcessA, CreateProcessW, SuspendThread, ResumeThread, GetThreadContext, SetThreadContext, ReadProcessMemory, WriteProcessMemory, VirtualAllocEx, CreateRemoteThread... and use the search button too Edited January 18, 20187 yr by evlncrn8
January 19, 20187 yr Author 11 hours ago, evlncrn8 said: research OpenProcess, CreateProcessA, CreateProcessW, SuspendThread, ResumeThread, GetThreadContext, SetThreadContext, ReadProcessMemory, WriteProcessMemory, VirtualAllocEx, CreateRemoteThread... and use the search button too Thanks dude !
January 19, 20187 yr i forgot VirtualProtectEx too, that might come in useful, but all of those generally give you what you're after and im sure you can find some examples of the api usage or documentation on msdn, codeproject, github or the like
Create an account or sign in to comment