-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:aa2g/ChainDLL
- Loading branch information
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# ChainDLL | ||
|
||
This utility will patch an exe file so that it will load specified DLL file on startup | ||
(prior to executing anything else). | ||
|
||
It is similiar to various injectors (CreateRemoteThread/QueueAPC etc), however it burns | ||
the LoadLibrary call into the target exe file and executes it at a well-defined point. | ||
|
||
It does not need a debug privilege either. | ||
|
||
If the burned in DLL path does not exist, or its DllMain fails for some reason, the original | ||
EXE binary continues silently. | ||
|
||
The DLL paths injected are always interpreted relative to the host EXE. |