-
Notifications
You must be signed in to change notification settings - Fork 0
/
memory.cpp
243 lines (210 loc) · 4.21 KB
/
memory.cpp
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
#include "pch.h"
#include "common.h"
#include "memory.h"
DWORD PID;
// 读int类型
int readInt(__int64 address)
{
HANDLE handle = OpenProcess(PROCESS_ALL_ACCESS, FALSE, PID);
if (handle == NULL)
{
return -1;
}
int value;
if (ReadProcessMemory(handle, (void*)address, &value, 4, NULL))
{
return value;
}
CloseHandle(handle);
return -1;
}
// 写入int数据
bool writeInt(__int64 address, __int64 value)
{
HANDLE handle = OpenProcess(PROCESS_ALL_ACCESS, FALSE, PID);
if (handle == NULL)
{
return false;
}
if (WriteProcessMemory(handle, (void*)address, &value, 4, NULL)) {
CloseHandle(handle);
return true;
}
return false;
}
// 读取long类型
__int64 readLong(__int64 address)
{
HANDLE handle = OpenProcess(PROCESS_ALL_ACCESS, FALSE, PID);
if (handle == NULL)
{
return -1;
}
__int64 value;
if (ReadProcessMemory(handle, (void*)address, &value, 8, NULL))
{
return value;
}
CloseHandle(handle);
return -1;
}
// 写入long数据
bool writeLong(__int64 address, __int64 value)
{
HANDLE handle = OpenProcess(PROCESS_ALL_ACCESS, FALSE, PID);
if (handle == NULL)
{
return false;
}
bool res = WriteProcessMemory(handle, (void*)address, &value, 8, NULL);
CloseHandle(handle);
return res;
}
// 读取浮点数
float readFloat(__int64 address)
{
HANDLE handle = OpenProcess(PROCESS_ALL_ACCESS, FALSE, PID);
if (handle == NULL)
{
return -1;
}
float value;
if (ReadProcessMemory(handle, (void*)address, &value, 4, NULL))
{
return value;
}
CloseHandle(handle);
return -1;
}
// 写入浮点数据
bool writeFloat(__int64 address, float value)
{
HANDLE handle = OpenProcess(PROCESS_ALL_ACCESS, FALSE, PID);
if (handle == NULL)
{
return false;
}
bool res = WriteProcessMemory(handle, (void*)address, &value, 4, NULL);
CloseHandle(handle);
return res;
}
// 读取字节数组
vector<byte> readByteArray(__int64 address, int length)
{
vector<byte> result;
HANDLE handle = OpenProcess(PROCESS_ALL_ACCESS, FALSE, PID);
if (handle == NULL)
{
return result;
}
byte* tempResult;
tempResult = new byte[length];
memset(tempResult, 0, length);
ReadProcessMemory(handle, (LPCVOID)address, tempResult, length, NULL);
result.resize(length);
for (int i = 0; i < length; i++)
{
result[i] = tempResult[i];
}
CloseHandle(handle);
return result;
}
// 写入字节数组
bool writeByteArray(__int64 address, vector<byte> Data)
{
HANDLE handle = OpenProcess(PROCESS_ALL_ACCESS, FALSE, PID);
if (handle == NULL)
{
return false;
}
int length;
length = (int)Data.size();
byte* val = new byte[length];
for (int i = 0; i < length; i++)
{
val[i] = Data[i];
}
bool res = WriteProcessMemory(handle, (LPVOID)address, (LPCVOID)val, length, NULL);
CloseHandle(handle);
return res;
}
// wstring转字节数组
vector<byte> wstringToBytes(wstring w_string)
{
vector<byte> data;
// 获取宽字符串指针
const wchar_t* ptr1 = w_string.c_str();
// 转为字符指针
byte* pChar = (byte*)ptr1;
// 获取字符长度(不包含\0);
size_t leng = w_string.size() * 2;
// 字符放入到容器
for (size_t i = 0; i < leng; i++) {
data.push_back((byte) * (pChar + i));
}
data.push_back(0);
data.push_back(0);
return data;
}
// 字节数组转wstring
wstring bytesToWstring(vector<byte> data)
{
// 声明宽字符串
wstring wstr;
// 获取字符长度(不包含\0);
size_t length = data.size() - 2;
// 重新设置字符串大小
wstr.resize(length / 2, 0);
// 获取字符串指针
byte* pByte = (byte*)wstr.data();
// 填充字符串
for (size_t i = 0; i < length; i++)
{
*pByte = data[i];
pByte++;
}
return wstr;
}
// 创建字节数组
vector<byte> makeByteArray(vector<byte> data)
{
return data;
}
// 创建指定长度的字节数组
vector<byte> makeEmptyByteArray(int length)
{
vector<byte> data;
for (int i = 0; i < length; i++)
{
data.push_back(NULL);
}
return data;
}
// int转字节数组
vector<byte> intToBytes(int length) {
__int64 adr = (__int64)&length;
vector<byte>c;
for (size_t i = 0; i < 4; i++) {
c.push_back(*(byte*)adr++);
}
return c;
}
// long转字节数组
vector<byte> longToBytes(__int64 length) {
__int64 adr = (__int64)&length;
vector<byte>c;
for (size_t i = 0; i < 8; i++) {
c.push_back(*(byte*)adr++);
}
return c;
}
// 运算符重载
vector<byte> operator+(vector<byte> a, vector<byte> b)
{
for (int i = 0; i < b.size(); i++)
{
a.push_back(b[i]);
}
b.clear();
return a;
}