MemoryModule icon indicating copy to clipboard operation
MemoryModule copied to clipboard

Library to load a DLL from memory.

Results 54 MemoryModule issues
Sort by recently updated
recently updated
newest added

Some dlls do not use Native SectionAlignment, instead use SectionAlignment from PE. Issue 54 should be solved then: https://github.com/fancycode/MemoryModule/issues/54

## Bug The end cannot be determined based on whether the Virtual Address of the next IMAGE_BASE_RELOCATION is 0 or not. In fact, it is possible that the next IMAGE_BASE_RELOCATION...

Windows doesn't strip sections with IMAGE_SCN_MEM_DISCARDABLE from the image in the user mode: https://github.com/fancycode/MemoryModule/blob/5f83e41c3a3e7c6e8284a5c1afa5a38790809461/MemoryModule.c#L273 So these sections have wrong access for EXE/DLL files.

Since i update to this version, it cant load kernel32.dll that with previous version is work.

the DLL that uses the Open SSL library cannot be loaded from memory. Is this a bug?

Hello, I noticed that I am loading memory to load a DLL, but this DLL contains new memory allocation, which will definitely fail. Can you solve this problem?

Can you load an executable that written in c# in this memorymodule ? I want to use this memoryModule specifically if so please help me on what would be needed.....

MemoryModule is available as a port in vcpkg, a C++ library manager that simplifies installation for MemoryModule and other project dependencies. Documenting the install process here will help users get...

Based on PELoader project - I've created by own https://github.com/tapika/dllloader dll loader. Was using same approach as PE Loader, only together with minhooks library. Maybe could be added as reference...

I'm using the latest version of MemoryModule (f02a8e6a382d42b2fcc43e93729ebdef3ce420eb). To reproduce, replace `SampleDLL.cpp` with: ``` cpp class Callable { public: virtual int call() { return 0; } }; Callable * GetCallable()...