Files
Matt Graeber dfec277813 Added Invoke-ReflectivePEInjection
Another awesome addition from Joe Bialek. Invoke-ReflectivePEInjection
is a vast improvement over Invoke-ReflectiveDllInjection. It adds the
following features:

* Now supports loading exe files in memory
* Supports reflective dll injection into a remote process
* Additional sample Visual Studio solutions
2013-05-31 19:35:26 -04:00

29 lines
604 B
C++

// dllmain.cpp : Defines the entry point for the DLL application.
#include "stdafx.h"
using namespace std;
BOOL APIENTRY DllMain( HMODULE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved
)
{
ofstream myfile;
switch (ul_reason_for_call)
{
case DLL_PROCESS_ATTACH:
_mkdir("c:\\ReflectiveLoaderTest");
myfile.open ("c:\\ReflectiveLoaderTest\\DllMain.txt");
myfile << "DllMain successfully called.\n";
myfile.close();
break;
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
case DLL_PROCESS_DETACH:
break;
}
return TRUE;
}