Skip to content

Roncik/DLL_Injector

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

DLL_Injector

Program for "injecting" a dll to a target process.

How to build

you need:

Visual Studio

Build the project in release configuration

Docs

The injector works by making the target process call LoadLibraryA with the path to our specified DLL.

It is achieved by first allocating memory space in the target process via VirtualAllocEx for the DLL path and then writing that dll path there via WriteProcessMemory. Second step is to call CreateRemoteThread with the address of LoadLibraryA passed as the start address of the created thread, we can do it that way because LoadLibraryA is a function of a staticly linked library that is loaded in all windows processes.

The target process name and dll path are hardcoded.

About

Program for "injecting" a dll to a target process.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages