Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
exe_to_dll — Converts a EXE into DLL | Kitploit
Tools/GitHubGitHub/hasherezade/exe_to_dll
Payload GenerationReverse EngineeringShellcodeBinary AnalysisBinary Exploitation
GitHubhasherezade/exe_to_dll

exe_to_dll

Converts a EXE into DLL

View Repository
1.4k20711 months agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

EXE_to_DLL

Build status GitHub release Github All Releases Github Latest Release

Converts an EXE, so that it can be loaded like a DLL.
Supports both 32 and 64 bit DLLs

Inspired by the idea of @guywhataguy. Read more here.

Download

Stable builds are available in releases.

Test builds can be downloaded from the build server (click on the build and choose the "Artifacts" tab)

Clone

Use recursive clone to get the repo together with all the submodules:

root@kitploit:~
git clone --recursive https://github.com/hasherezade/exe_to_dll.git

Usage

Run exe_to_dll from commandline. Arguments:

root@kitploit:~
args: <input_exe> <output_dll>

Example:

root@kitploit:~
exe_to_dll.exe test_case1.exe test_case1.dll

After the successful conversion you should obtain a DLL exporting a Start function. This is the Original Entry Point of your input application.

You can test it by running:

root@kitploit:~
rundll32.exe test_case1.dll,Start
Download Tool