Quote:
Originally Posted by matii1509
There is still way to hack but for advenced programmers
|
You could also do it without needing to be advanced or even a programmer. Making a DLL is far more work then you have to do to be able to get hacks to work.
You could just simply use the unpacked dek.exe and add a new section to it (probably like 1024 bytes or something would be enough if you're injecting hacks into the section), then open the dek.exe with ollydbg and replace some code in the first function to be executed (the module's entry point) with a jump to the new section. Then in the new section add a few lines of code to pause the process, could simply just do MessageBox() and then put the replaced code after that and jump back. Then just bypass the check for if minilauncher launched the process, it used to be just as simple as changing a je to jmp and probably still is.
Now launch the dek.exe and it will display a message box, at this point just inject all your hacks (you could either inject them into the new section if you created space for them or just inject them into allocated memory like normal). Once you've injected all the hacks you want, then just close CE and then the message box.
Though if you wanted to be able to disable and re-enable hacks I can't think of a way that would be easy enough without a little bit of knowledge of programming.