๐ DLL Merger
January 9, 2025 ยท View on GitHub
A simple tool that embeds DLLs into Windows 32-bit PE executables, along with a loader that manually maps the DLLs into memory instead of using LoadLibrary, making the loaded DLLs invisible in the PEB (Process Environment Block).
Principle of merging
How to build
git clone https://github.com/ytk2128/dll-merger.git --recurse-submodules- Open src/merger.sln
- Build the solution
Demonstration
- Run
merger.exe procexp.exe MyDLL.dll - Execute the created
procexp.exe_out.exe - Note that
MyDLL.dllis invisibly loaded in theprocexp.exe_out.exe