I am trying to figure out how to inject a dll into any process and run a exported function from the injector.
For example:
1 2 3 4 5 6
*Inject Dll*
*Somehow run the function
extern"C" __declspec(dllexport) void Initialize() {
MessageBox(0, "DLL loaded", "DLL Injection Successful!", 0);
}
from the injector itself
@writeonsharma. I would actually appreciate that quite a bit. I would like to know, when you inject a DLL, written by you. What methods are you overwriting, do you just grab the disasm of the previous DLL?