DLL Injection Hacking C++
Hey guys, I want to start contributing hacks to this community, but here is the only problem:
I have been programming for 2 years now. I have just moved from C# to C++ about 4 months ago, and I am loving every aspect of C++. I have made use of several functions, including DirectX and GetAsyncKeyState. I want to start learning about DLLs, because one day I hope to learn how to inject DLLs into processes to edit some program structures.
Can anybody recommend me a good book about DLL's(mainly DLL injection) I am dedicated and I know that this is a difficult process. I am not one of those noobs who expect to learn everything in one week, because I know that it will probably take a year or so to master, but I just really want to know how to do it.
So can anybody recommend me any great DLL books/hacking
If there are any pro DLL hackers here, where did you start?
Thank you for your time.
case DLL_PROCESS_ATTACH:
DisableThreadLibraryCalls(hDll); // disabled the DLL_THREAD_ part =) will need this for most games else u could crash
case DLL_PROCESS_DETACH:
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
I will write an in-depth tutorial on gamehacking with Dll's as soon as im bored, which should be sometime this weekend(ill use AssaultCube as exame since its opensource).