Right now i have a DLL written on C++, which injected through simple C# LoadLibraryA injector. DLL is extracted right before injecting from resources to my hdd... but how to inject it in process right from resources without extracting?
0
votes
1 Answers
0
votes
No way to do what you want. Method LoadLibrary for loading unmanaged dll has no overloads and has one argument - path to library. This question contains simple example of loading dll from memory, but it very simple.