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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
use super::{MemoryRegionIter, ProcessIterator, Query};
use crate::{
module::ModuleIterator,
pattern::{Pattern, PatternSearcher},
size_of,
thread::ThreadIterator,
types::{MemoryBasicInformation, MemoryProtection},
FaitheError,
};
use std::{
mem::{self, size_of, zeroed},
path::Path,
ptr::null,
};
use windows::Win32::{
Foundation::{CloseHandle, HANDLE, HINSTANCE},
System::{
Diagnostics::Debug::{ReadProcessMemory, WriteProcessMemory},
Memory::{
VirtualAllocEx, VirtualFreeEx, VirtualProtectEx, VirtualQueryEx,
VIRTUAL_ALLOCATION_TYPE, VIRTUAL_FREE_TYPE,
},
ProcessStatus::{K32GetModuleFileNameExW, K32GetProcessImageFileNameW},
Threading::{CreateRemoteThread, GetProcessId, OpenProcess, PROCESS_ACCESS_RIGHTS},
},
};
pub struct OwnedProcess(HANDLE);
impl OwnedProcess {
pub unsafe fn from_handle(h: HANDLE) -> Self {
Self(h)
}
pub fn open_by_id(
id: u32,
inherit_handle: bool,
desired_access: PROCESS_ACCESS_RIGHTS,
) -> crate::Result<Self> {
unsafe {
OpenProcess(desired_access, inherit_handle, id)
.map_err(|_| FaitheError::last_error())
.map(|v| Self(v))
}
}
pub fn open_by_name(
name: impl AsRef<str>,
inherit_handle: bool,
desired_access: PROCESS_ACCESS_RIGHTS,
) -> crate::Result<Self> {
ProcessIterator::new()?
.find_map(|pe| {
if pe.file_name == name.as_ref() {
Some(pe.open(inherit_handle, desired_access))
} else {
None
}
})
.ok_or(FaitheError::ProcessNotFound)?
}
pub fn modules(&self) -> crate::Result<ModuleIterator> {
ModuleIterator::new(self.id())
}
pub fn threads(&self) -> crate::Result<ThreadIterator> {
ThreadIterator::new(self.id())
}
pub fn id(&self) -> u32 {
unsafe { GetProcessId(self.0) }
}
pub fn image_name(&self) -> Option<String> {
let mut buf = [0; 255];
unsafe {
let len = K32GetProcessImageFileNameW(self.0, &mut buf);
assert!(len > 0, "Failed to get process's image file name");
Some(
String::from_utf16_lossy(&buf[..len as usize])
.rsplit_once('\\')?
.1
.to_string(),
)
}
}
pub fn regions(&self) -> MemoryRegionIter {
MemoryRegionIter::new(self)
}
pub unsafe fn handle(&self) -> HANDLE {
self.0
}
pub fn into_handle(self) -> HANDLE {
let handle = self.0;
core::mem::forget(self);
handle
}
pub fn address_module(&self, address: usize) -> crate::Result<String> {
self.module_name(self.query().base(address).ok_or(FaitheError::QueryFailed)?)
}
pub fn follow_pointer_path(&self, mut base: usize, offsets: &[usize]) -> crate::Result<usize> {
for (i, offset) in offsets.iter().copied().enumerate() {
if i == offsets.len() - 1 {
return Ok(base + offset);
}
base = self.read(base + offset)?;
}
unreachable!()
}
pub fn path(&self) -> crate::Result<String> {
unsafe {
let mut buf = [0u16; 256];
if K32GetModuleFileNameExW(self.0, HINSTANCE::default(), &mut buf) == 0 {
Err(FaitheError::last_error())
} else {
Ok(String::from_utf16_lossy(
&buf[..buf.iter().position(|b| *b == 0).unwrap_or(0)],
))
}
}
}
pub fn find_pattern(
&self,
mod_name: impl AsRef<str>,
pat: Pattern,
) -> crate::Result<Option<usize>> {
self.modules()?
.find(|me| me.name == mod_name.as_ref())
.ok_or(FaitheError::ModuleNotFound)?
.find_first(pat)
}
pub fn read<T>(&self, address: usize) -> crate::Result<T> {
unsafe {
let mut buf = zeroed();
let mut _read = 0;
if ReadProcessMemory(
self.0,
address as _,
&mut buf as *mut T as _,
size_of::<T>(),
&mut _read,
) == false
{
Err(FaitheError::last_error())
} else {
Ok(buf)
}
}
}
pub fn read_ext<T>(&self, address: usize, read: &mut usize) -> crate::Result<T> {
unsafe {
let mut buf = zeroed();
if ReadProcessMemory(
self.0,
address as _,
&mut buf as *mut T as _,
size_of::<T>(),
read,
) == false
{
Err(FaitheError::last_error())
} else {
Ok(buf)
}
}
}
pub fn read_buf(&self, address: usize, mut buf: impl AsMut<[u8]>) -> crate::Result<usize> {
unsafe {
let mut read = 0;
if ReadProcessMemory(
self.0,
address as _,
buf.as_mut().as_mut_ptr() as _,
buf.as_mut().len(),
&mut read,
) == false
{
Err(FaitheError::last_error())
} else {
Ok(read)
}
}
}
pub fn write<T>(&self, address: usize, value: T) -> crate::Result<usize>
where
T: Clone,
{
unsafe {
let mut written = 0;
if WriteProcessMemory(
self.0,
address as _,
&value as *const T as _,
size_of::<T>(),
&mut written,
) == false
{
Err(FaitheError::last_error())
} else {
Ok(written)
}
}
}
pub fn write_ext(
&self,
address: usize,
written: &mut usize,
buf: impl AsRef<[u8]>,
) -> crate::Result<()> {
unsafe {
if WriteProcessMemory(
self.0,
address as _,
buf.as_ref().as_ptr() as _,
buf.as_ref().len(),
written,
) == false
{
Err(FaitheError::last_error())
} else {
Ok(())
}
}
}
pub fn write_buf(&self, address: usize, buf: impl AsRef<[u8]>) -> crate::Result<usize> {
unsafe {
let mut written = 0;
if WriteProcessMemory(
self.0,
address as _,
buf.as_ref().as_ptr() as _,
buf.as_ref().len(),
&mut written,
) == false
{
Err(FaitheError::last_error())
} else {
Ok(written)
}
}
}
#[rustfmt::skip]
pub fn protect(
&self,
address: usize,
size: usize,
new_protection: MemoryProtection,
) -> crate::Result<MemoryProtection> {
unsafe {
let mut old = zeroed();
if VirtualProtectEx(
self.0,
address as _,
size,
new_protection.to_os(),
&mut old
) == false {
Err(FaitheError::last_error())
} else {
MemoryProtection::from_os(old).ok_or(FaitheError::UnknownProtection(old.0))
}
}
}
#[rustfmt::skip]
pub fn allocate(
&self,
address: usize,
size: usize,
allocation_type: VIRTUAL_ALLOCATION_TYPE,
protection: MemoryProtection,
) -> crate::Result<usize> {
unsafe {
let region = VirtualAllocEx(
self.0,
address as _,
size,
allocation_type,
protection.to_os()
);
if region.is_null() {
Err(FaitheError::last_error())
} else {
Ok(region as _)
}
}
}
#[rustfmt::skip]
pub fn free(
&self,
address: usize,
size: usize,
free_type: VIRTUAL_FREE_TYPE
) -> crate::Result<()>
{
unsafe {
if VirtualFreeEx(
self.0,
address as _,
size,
free_type
) == false {
Err(FaitheError::last_error())
} else {
Ok(())
}
}
}
pub fn query_memory(&self, address: usize) -> crate::Result<MemoryBasicInformation> {
unsafe {
let mut mem_info = zeroed();
if VirtualQueryEx(self.0, address as _, &mut mem_info, size_of!(@ mem_info)) == 0 {
Err(FaitheError::last_error())
} else {
Ok(mem_info.into())
}
}
}
pub fn create_remote_thread<T>(
&self,
address: usize,
param: *const T,
) -> crate::Result<(HANDLE, u32)> {
unsafe {
let mut tid = 0;
CreateRemoteThread(
self.0,
null(),
0,
mem::transmute(address),
param as _,
0,
&mut tid,
)
.map_err(|_| FaitheError::last_error())
.map(|v| (v, tid))
}
}
pub fn module_path(&self, address: usize) -> crate::Result<String> {
let mut vec = vec![0; 255];
unsafe {
let len =
K32GetModuleFileNameExW(self.0, HINSTANCE(address as _), &mut vec[..]) as usize;
if len == 0 {
Err(FaitheError::last_error())
} else {
Ok(String::from_utf16_lossy(&vec[..len]))
}
}
}
pub fn module_name(&self, address: usize) -> crate::Result<String> {
let path = self.module_path(address)?;
let path: &Path = path.as_ref();
Ok(path.file_name().unwrap().to_string_lossy().into_owned())
}
pub fn query(&self) -> Query {
Query(self)
}
}
impl Drop for OwnedProcess {
fn drop(&mut self) {
unsafe {
CloseHandle(self.0);
}
}
}