Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 398 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 398 Bytes

DLL-Hijack

Simple one file header for hijacking dll for desired executable to do 3rd party modifying 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;
}