1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
#include <Windows.h>
#include <iostream>
#include <string>
#include <TCHAR.H>
#include "Header.h";
using namespace std;
#pragma comment( lib, "psapi.lib" )
Memory memory;
DWORD jmpBackAddys;
DWORD items = 0x00;
bool Hook(void * toHook, void * ourFunct, int len)
{
if (len < 5)
{
return false;
}
else
{
}
DWORD curProtection;
VirtualProtect(toHook, len, PAGE_EXECUTE_READWRITE, &curProtection);
memset(toHook, 0x90, len);
DWORD relativeAddress = ((DWORD)ourFunct - (DWORD)toHook) - 5;
*(BYTE*)toHook = 0xE9;
*(DWORD*)((DWORD)toHook + 1) = relativeAddress; // <-- I DID NOT UNDERSTAND THIS
DWORD temp;
VirtualProtect(toHook, len, curProtection, &temp);
return true;
}
void __declspec(naked) server_buffer()
{
__asm
{
mov ebx, dword ptr ss : [ebp - 0x1C]
mov items, ebx
test ebx, ebx
jmp jmpBackAddys
}
}
DWORD WINAPI MainThread(LPVOID param)
{
int itemshookLength = 5;
DWORD itemshookAdd = 0x00AD73A1 ; //
jmpBackAddys = itemshookAdd + itemshookLength;
Hook((void*)itemshookAdd, server_buffer, itemshookLength);
AllocConsole();
FILE* f;
freopen_s(&f, "CONOUT$", "w", stdout);
while (true)
{
Sleep(10);
auto Base = reinterpret_cast<LPVOID>((DWORD)items + 0xc);
if (items > 0) {
void *buffer = memory.Read<LPVOID>(Base);
cout << "add = " << Base << endl;
cout << "buffer = " << buffer << endl;
}
}
fclose(f);
FreeConsole();
FreeLibraryAndExitThread((HMODULE)param, 0);
return 0;
}
BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpReserved) {
switch (dwReason) {
case DLL_PROCESS_ATTACH:
CreateThread(0, 0, MainThread, hModule, 0, 0);
break;
}
return TRUE;
}
|