This commit is contained in:
世元 李
2020-03-22 18:44:07 +08:00
parent f46573572a
commit ab9535dc03
46 changed files with 725 additions and 59 deletions

View File

@@ -2,7 +2,7 @@
#include <Windows.h>
#define DLLAPI __declspec(dllexport)
BOOL InjectDLL(HANDLE hProcess, LPCWSTR dllFilePathName);//Inject dll to the signal process
extern "C" DLLAPI HANDLE InjectSelfTo(LPCSTR inptr);//Inject self
extern "C" DLLAPI HANDLE InjectSelfTo(char inptr[]);//Inject self
signed int Fake_Sub();//hooked function point
@@ -35,4 +35,6 @@ extern "C" DLLAPI void ChangeTToG();
extern "C" DLLAPI void LoadExerte();
extern "C" DLLAPI WCHAR * GetResultData();
PVOID GetProcAddressEx(HANDLE hProc, HMODULE hModule, LPCSTR lpProcName);