T-Mixer Posted December 26, 2017 Posted December 26, 2017 Is there any way please (code or tool) for x64 '.dll' files inline patching ? I will be a great favor. Thanks.
Kurapica Posted January 18, 2018 Posted January 18, 2018 Solution for what ?! No one will write the code for you. show us what you have and where you failed and we may help.
T-Mixer Posted January 18, 2018 Author Posted January 18, 2018 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.
evlncrn8 Posted January 18, 2018 Posted January 18, 2018 (edited) research OpenProcess, CreateProcessA, CreateProcessW, SuspendThread, ResumeThread, GetThreadContext, SetThreadContext, ReadProcessMemory, WriteProcessMemory, VirtualAllocEx, CreateRemoteThread... and use the search button too Edited January 18, 2018 by evlncrn8 1
T-Mixer Posted January 19, 2018 Author Posted January 19, 2018 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 !
Kurapica Posted January 19, 2018 Posted January 19, 2018 No need to apologize, I was just trying to understand your purpose. have fun. 1
evlncrn8 Posted January 19, 2018 Posted January 19, 2018 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
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now