wraith/manipulation/
mod.rs

1//! Manipulation primitives for PE loading, module hiding, syscalls, hooks, and anti-debug
2
3#[cfg(feature = "manual-map")]
4pub mod manual_map;
5
6#[cfg(feature = "syscalls")]
7pub mod syscall;
8
9#[cfg(feature = "spoof")]
10pub mod spoof;
11
12#[cfg(feature = "hooks")]
13pub mod hooks;
14
15#[cfg(feature = "inline-hook")]
16pub mod inline_hook;
17
18#[cfg(feature = "antidebug")]
19pub mod antidebug;
20
21#[cfg(feature = "unlink")]
22pub mod unlink;
23
24#[cfg(feature = "remote")]
25pub mod remote;