//--------------------------------------------------------------------------- // // NtInjectorThread.cpp // // SUBSYSTEM: // API Hooking system // MODULE: // Implements a thread that uses an NT device driver // for monitoring process creation // // DESCRIPTION: // // AUTHOR: Ivo Ivanov (ivopi@hotmail.com) // //--------------------------------------------------------------------------- #include "NtInjectorThread.h" #include "Injector.h" //--------------------------------------------------------------------------- // // class CNtInjectorThread // //--------------------------------------------------------------------------- CNtInjectorThread::CNtInjectorThread(CRemThreadInjector* pInjector): CNtProcessMonitor(), m_pInjector(pInjector) { } CNtInjectorThread::~CNtInjectorThread() { } void CNtInjectorThread::OnCreateProcess(DWORD dwProcessId) { m_pInjector->InjectModuleInto(dwProcessId); } void CNtInjectorThread::OnTerminateProcess(DWORD dwProcessId) { // // We shouldn't eject the module here, because the process // already has been terminated, meaning that the DLL probably // is unloaded or possibly the process is not running anymore. // } //----------------------------End of the file -------------------------------
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)
Math Primers for Programmers