-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathLittlemem.h
118 lines (106 loc) · 2.13 KB
/
Littlemem.h
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
//My Little Memory Editing / Reading Class.
//ALL Credits go to: http://www.unknowncheats.me/forum/c-and-c/119466-moving-internally-and-getting-rid-rpm.html
//Special Thanks to all members who posted in that thread.
#include <Windows.h>
int filter(unsigned int code, struct _EXCEPTION_POINTERS* ep)
{
// Handle only AV
return code == EXCEPTION_ACCESS_VIOLATION ? EXCEPTION_EXECUTE_HANDLER : EXCEPTION_CONTINUE_SEARCH;
}
class Memory
{
public:
template <typename T>
T read(uintptr_t Address, const T& def_val = T())
{
__try
{
return *(T*)(Address);
}
__except (filter(GetExceptionCode(), GetExceptionInformation()))
{
return def_val;
}
}
template <class T>
bool write(uintptr_t Address, T Value)
{
__try
{
*(T*)Address = Value;
}
__except (filter(GetExceptionCode(), GetExceptionInformation()))
{
return false;
}
return true;
}
template <class T>
bool add(uintptr_t Address, T Value)
{
__try
{
*(T*)Address += Value;
}
__except (filter(GetExceptionCode(), GetExceptionInformation()))
{
return false;
}
return true;
}
template <class T>
bool sub(uintptr_t Address, T Value)
{
__try
{
*(T*)Address -= Value;
}
__except (filter(GetExceptionCode(), GetExceptionInformation()))
{
return false;
}
return true;
}
template <class T>
bool multiply(uintptr_t Address, T Value)
{
__try
{
*(T*)Address *= Value;
}
__except (filter(GetExceptionCode(), GetExceptionInformation()))
{
return false;
}
return true;
}
template <class T>
bool divide(uintptr_t Address, T Value)
{
__try
{
*(T*)Address /= Value;
}
__except (filter(GetExceptionCode(), GetExceptionInformation()))
{
return false;
}
return true;
}
DWORD* GetAddress(uintptr_t Address1, uintptr_t Address2)
{
__try
{
DWORD* address = (DWORD*)((*(DWORD*)(Address1)) + Address2);
return address;
}
__except (filter(GetExceptionCode(), GetExceptionInformation()))
{
return 0;
}
}
DWORD BaseAddress()
{
return (DWORD)GetModuleHandle(NULL);
}
};