mirror of
https://github.com/WithSecureLabs/ModuleStomping
synced 2026-06-06 17:00:48 +00:00
9 lines
366 B
C
9 lines
366 B
C
#pragma once
|
|
#include "moduleManipulation.h"
|
|
|
|
BOOL EnableDebugPrivilege(BOOL bEnable);
|
|
void* injectLoadLibrary(HANDLE toScanHandle, const wchar_t* toLoad);
|
|
unsigned char* getModuleBase(HANDLE toScanHandle, const wchar_t* moduleNameSubstring);
|
|
BOOL isModuleLoaded(HANDLE toScanHandle, const wchar_t* moduleNameSubstring);
|
|
DWORD getPIDForProcessByName(TCHAR* toFind);
|