Skip to content

Latest commit

 

History

7 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 

Repository files navigation

DLL-Hijack

A simple single-file header for hijacking a DLL in a desired executable, allowing third-party modifications without DLL injection.

Usage

#include "xxx.hpp"

int __stdcall DllMain(HMODULE m_hModule, DWORD m_dReason, void* m_pReserved)
{
    if (m_dReason == DLL_PROCESS_ATTACH)
    {
        sneakyevil_DllHijack::Initialize();
        
        // Your code...
    }
    
    return 1;
}

About

A simple single-file header for hijacking a DLL in a desired executable, allowing third-party modifications without DLL injection.

Resources

Stars

12 stars

Watchers

1 watching

Forks

Contributors

Languages