walter 0.1.13

A simple Rust library for 32 and 64 bit hooking.
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
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
#![allow(clippy::needless_doctest_main)]

//! # A simple Rust library for 32 and 64 bit hooking.
//!
//! `walter` is a simple 32 and 64 bit hooking library.

mod bindings {
    windows::include_bindings!();
}

use std::{
    ffi::c_void,
    ptr::{
        write_bytes,
        copy_nonoverlapping,
    },
};
use bindings::Windows::Win32::System::Memory::{
    MEM_COMMIT,
    MEM_RELEASE,
    VirtualFree,
    MEM_RESERVE,
    VirtualAlloc,
    VirtualProtect,
    PAGE_PROTECTION_FLAGS,
    PAGE_EXECUTE_READWRITE,
};

const JUMP_CODES: [u8; 14] = [
    0xFF, 0x25, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
];

#[derive(Debug)]
pub enum HookError {
    Error(String),
}

trait Hook {
    fn unhook(&mut self) -> Result<(), HookError>;
    fn is_hooked(&self) -> bool;
}

/// A 32 bit trampoline hook.
///
/// After creating a `TrampolineHook32` by [`hook`]ing a method, it redirects the flow of execution.
///
/// The method will be unhooked when the value is dropped.
///
/// [`hook`]: #method.hook
#[derive(Debug)]
pub struct TrampolineHook32 {
    gateway: *mut c_void,
    hook: Hook32,
}

impl TrampolineHook32 {
    /// Creates a new `TrampolineHook32` which will be hooking the specified src.
    pub fn hook(src: *mut c_void, dst: *mut c_void, len: usize) -> Result<Self, HookError> {
        if len < 5 {
            return Err(HookError::Error("Len to small".to_owned()));
        }

        let gateway = unsafe {
            VirtualAlloc(
                0 as *mut c_void,
                len + 5,
                MEM_COMMIT | MEM_RESERVE,
                PAGE_EXECUTE_READWRITE
            )
        };

        unsafe { copy_nonoverlapping(src, gateway, len); }

        unsafe { *(((gateway as *mut usize) as usize + len) as *mut usize) = 0xE9; }
        unsafe {
            *(((gateway as *mut usize) as usize + len + 1) as *mut usize) =
                (((src as *mut isize) as isize - (gateway as *mut isize) as isize) - 5) as usize;
        }

        let hook = Hook32::hook(src, dst, len)?;

        Ok(Self { gateway, hook })
    }

    /// Returns the gateway containing the overridden bytes.
    pub fn gateway(&self) -> *mut c_void {
        self.gateway
    }
}

impl Hook for TrampolineHook32 {
    fn unhook(&mut self) -> Result<(), HookError> {
        if !self.is_hooked() {
            return Ok(());
        }

        let res = unsafe {
            VirtualFree(
                self.gateway,
                0,
                MEM_RELEASE
            )
        };

        if res.as_bool() {
            self.hook.unhook()?;
            Ok(())
        } else {
            Err(HookError::Error("Region not freed".to_owned()))
        }
    }

    fn is_hooked(&self) -> bool {
        self.hook.is_hooked()
    }
}

unsafe impl Sync for TrampolineHook32 { }
unsafe impl Send for TrampolineHook32 { }

impl Drop for TrampolineHook32 {
    fn drop(&mut self) {
        let _ = self.unhook();
    }
}

/// A 32 bit hook.
///
/// After creating a `Hook32` by [`hook`]ing a method, it redirects the flow of execution.
///
/// The method will be unhooked when the value is dropped.
///
/// [`hook`]: #method.hook
#[derive(Debug)]
pub struct Hook32 {
    src: *mut c_void,
    len: usize,
    orig_codes: Vec<u8>,
    hooked: bool,
}

impl Hook32 {
    /// Creates a new `Hook32` which will be hooking the specified src.
    pub fn hook(src: *mut c_void, dst: *mut c_void, len: usize) -> Result<Self, HookError> {
        if len < 5 {
            return Err(HookError::Error("Len to small".to_owned()));
        }

        let mut init_protection = PAGE_PROTECTION_FLAGS::default();
        let res = unsafe {
            VirtualProtect(
                src,
                len,
                PAGE_EXECUTE_READWRITE,
                &mut init_protection
            )
        };

        if !res.as_bool() {
            return Err(HookError::Error("Protection not changed".to_owned()));
        }

        let mut orig_codes: Vec<u8> = vec![0x90; len];
        unsafe { copy_nonoverlapping(src, orig_codes.as_mut_ptr() as *mut c_void, len); }

        unsafe { write_bytes(src, 0x90, len); }

        unsafe { *(src as *mut usize) = 0xE9; }
        unsafe {
            *(((src as *mut usize) as usize + 1) as *mut usize) =
                (((dst as *mut isize) as isize - (src as *mut isize) as isize) - 5) as usize;
        }

        let res = unsafe {
            VirtualProtect(
                src,
                len,
                init_protection,
                &mut init_protection
            )
        };

        if res.as_bool() {
            Ok(Self { src, len, orig_codes, hooked: true })
        } else {
            Err(HookError::Error("Protection not changed".to_owned()))
        }
    }
}

impl Hook for Hook32 {
    fn unhook(&mut self) -> Result<(), HookError> {
        if !self.hooked {
            return Ok(());
        }

        let mut init_protection = PAGE_PROTECTION_FLAGS::default();
        let res = unsafe {
            VirtualProtect(
                self.src,
                self.len,
                PAGE_EXECUTE_READWRITE,
                &mut init_protection
            )
        };

        if !res.as_bool() {
            return Err(HookError::Error("Protection not changed".to_owned()));
        }

        unsafe {
            copy_nonoverlapping(
                self.orig_codes.as_ptr() as *mut c_void,
                self.src,
                self.len
            );
        }

        let res = unsafe {
            VirtualProtect(
                self.src,
                self.len,
                init_protection,
                &mut init_protection
            )
        };

        if res.as_bool() {
            self.hooked = false;
            Ok(())
        } else {
            Err(HookError::Error("Protection not changed".to_owned()))
        }
    }

    fn is_hooked(&self) -> bool {
        self.hooked
    }
}

unsafe impl Sync for Hook32 { }
unsafe impl Send for Hook32 { }

impl Drop for Hook32 {
    fn drop(&mut self) {
        let _ = self.unhook();
    }
}

/// A 64 bit trampoline hook.
///
/// After creating a `TrampolineHook64` by [`hook`]ing a method, it redirects the flow of execution.
///
/// The method will be unhooked when the value is dropped.
///
/// [`hook`]: #method.hook
#[derive(Debug)]
pub struct TrampolineHook64 {
    gateway: *mut c_void,
    hook: Hook64,
}

impl TrampolineHook64 {
    /// Creates a new `TrampolineHook64` which will be hooking the specified src.
    pub fn hook(src: *mut c_void, dst: *mut c_void, len: usize) -> Result<Self, HookError> {
        if len < 14 {
            return Err(HookError::Error("Len to small".to_owned()));
        }

        let mut jump_codes = JUMP_CODES.clone();
        let jump_codes_ptr = jump_codes.as_mut_ptr() as *mut c_void;

        let gateway = unsafe {
            VirtualAlloc(
                0 as *mut c_void,
                len + jump_codes.len(),
                MEM_COMMIT | MEM_RESERVE,
                PAGE_EXECUTE_READWRITE
            )
        };

        unsafe {
            copy_nonoverlapping(
                ((&((src as usize) + len)) as *const usize) as *mut c_void,
                jump_codes_ptr.offset(6),
                8
            );
        }

        unsafe { copy_nonoverlapping(src, gateway, len); }

        unsafe {
            copy_nonoverlapping(
                jump_codes_ptr,
                ((gateway as usize) + len) as *mut c_void,
                jump_codes.len()
            );
        }

        let hook = Hook64::hook(src, dst, len)?;

        Ok(Self { gateway, hook })
    }

    pub fn gateway(&self) -> *mut c_void {
        self.gateway
    }
}

impl Hook for TrampolineHook64 {
    fn unhook(&mut self) -> Result<(), HookError> {
        if !self.is_hooked() {
            return Ok(());
        }

        let res = unsafe {
            VirtualFree(
                self.gateway,
                0,
                MEM_RELEASE
            )
        };

        if res.as_bool() {
            self.hook.unhook()?;
            Ok(())
        } else {
            Err(HookError::Error("Region not freed".to_owned()))
        }
    }

    fn is_hooked(&self) -> bool {
        self.hook.is_hooked()
    }
}

unsafe impl Sync for TrampolineHook64 { }
unsafe impl Send for TrampolineHook64 { }

impl Drop for TrampolineHook64 {
    fn drop(&mut self) {
        let _ = self.unhook();
    }
}

/// A 64 bit hook.
///
/// After creating a `Hook64` by [`hook`]ing a method, it redirects the flow of execution.
///
/// The method will be unhooked when the value is dropped.
///
/// [`hook`]: #method.hook
#[derive(Debug)]
pub struct Hook64 {
    src: *mut c_void,
    len: usize,
    orig_codes: Vec<u8>,
    hooked: bool,
}

impl Hook64 {
    /// Creates a new `Hook64` which will be hooking the specified src.
    pub fn hook(src: *mut c_void, dst: *mut c_void, len: usize) -> Result<Self, HookError> {
        if len < 14 {
            return Err(HookError::Error("Len to small".to_owned()));
        }

        let mut init_protection = PAGE_PROTECTION_FLAGS::default();
        let res = unsafe {
            VirtualProtect(
                src,
                len,
                PAGE_EXECUTE_READWRITE,
                &mut init_protection
            )
        };

        if !res.as_bool() {
            return Err(HookError::Error("Protection not changed".to_owned()));
        }

        let mut orig_codes: Vec<u8> = vec![0x90; len];
        unsafe { copy_nonoverlapping(src, orig_codes.as_mut_ptr() as *mut c_void, len); }

        unsafe { write_bytes(src, 0x90, len); }

        let mut jump_codes = JUMP_CODES.clone();
        let jump_codes_ptr = jump_codes.as_mut_ptr() as *mut c_void;

        unsafe {
            copy_nonoverlapping(
                (&(dst as usize) as *const usize) as *mut c_void,
                jump_codes_ptr.offset(6),
                8
            );
        }

        unsafe { copy_nonoverlapping(jump_codes_ptr, src, jump_codes.len()); }

        let res = unsafe {
            VirtualProtect(
                src,
                len,
                init_protection,
                &mut init_protection
            )
        };

        if res.as_bool() {
            Ok(Self { src, len, orig_codes, hooked: true })
        } else {
            Err(HookError::Error("Protection not changed".to_owned()))
        }
    }
}

impl Hook for Hook64 {
    fn unhook(&mut self) -> Result<(), HookError> {
        if !self.hooked {
            return Ok(());
        }

        let mut init_protection = PAGE_PROTECTION_FLAGS::default();
        let res = unsafe {
            VirtualProtect(
                self.src,
                self.len,
                PAGE_EXECUTE_READWRITE,
                &mut init_protection
            )
        };

        if !res.as_bool() {
            return Err(HookError::Error("Protection not changed".to_owned()));
        }

        unsafe {
            copy_nonoverlapping(
                self.orig_codes.as_ptr() as *mut c_void,
                self.src,
                self.len
            );
        }

        let res = unsafe {
            VirtualProtect(
                self.src,
                self.len,
                init_protection,
                &mut init_protection
            )
        };

        if res.as_bool() {
            self.hooked = false;
            Ok(())
        } else {
            Err(HookError::Error("Protection not changed".to_owned()))
        }
    }

    fn is_hooked(&self) -> bool {
        self.hooked
    }
}

unsafe impl Sync for Hook64 { }
unsafe impl Send for Hook64 { }

impl Drop for Hook64 {
    fn drop(&mut self) {
        let _ = self.unhook();
    }
}