Skip to content

styinx/DLLInject

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DLLInject

Inject a DLL into a windows process.

Build

cmake -S . -B build
cmake --build build

How to use

#include "DLLInject.hpp"

int main(int argc, char** argv)
{
    if(injectDLL("your.exe", "your.dll", 5000, 1000) == InjectResult::SUCCESS)
        printf("DLL was injected successfully.\n");

    return 0;
}

About

Inject a DLL into a Windows process

Resources

License

Stars

Watchers

Forks