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
|
#include "MinimapText.h"
#include "Engine.h"
#include "Sdk.h"
#include "Renderer.h"
#include "Utility.h"
#include "DetourHook64.h"
#include <map>
#pragma warning( disable : 4244 )
char* name = "NewName";
void MinimapText::OnInitialise()
{
//Working
//const int shellcodeSize = 29;
//BYTE shellcode[shellcodeSize] = { 0x8B, 0x84, 0xF5, 0x24, 0x1, 0x0, 0x0, // mov eax, [rbp+rsi*8+5F8h+var_4D4] <-- orginal code
// 0x89, 0x44, 0x24, 0x20, // mov dword ptr[rsp + 6D0h + var_6B0], eax <-- orginal code
// 0x44, 0x8B, 0x8C, 0xF5, 0x20, 0x1, 0x0, 0x0, // mov r9d, dword ptr[rbp + rsi * 8 + 5F8h + var_4DC + 4] <-- orginal code
// 0x49, 0xB8, 0x88, 0x77, 0x66, 0x55, 0x44, 0x33, 0x22, 0x11 }; //MOV R8, 0x1122334455667788 <-- new code (replaces string to print)
//*(uint64_t*)(&shellcode[21]) = (uint64_t)name;
////8B 84 F5 ? ? ? ? 89
//BYTE* hookAddress = (BYTE*)Utility::Scan("\x8B\x84\xF5\x00\x00\x00\x00\x89", "xxx????x", (char*)0x7ff000000000, 0x800000000000 - 0x7ff000000000);
//printf("hookAddress: %p\n", hookAddress);
//minimapTextDetour = new DetourHook64();
//minimapTextDetour->Hook(hookAddress, shellcode, shellcodeSize, (uint64_t)(hookAddress + 23), 19);
}
void MinimapText::OnShutdown()
{
//minimapTextDetour->Unhook();
}
void MinimapText::OnMenuMainWindow()
{
//ImGui::Checkbox("Minimap Ressource Information", &hookEnabled);
}
|