wraith-rs 0.1.8

Safe abstractions for Windows PEB/TEB manipulation and anti-detection techniques
Documentation
1
2
3
4
5
6
7
8
9
10
//! Trampoline building and memory management
//!
//! This module provides the infrastructure for allocating executable memory
//! and generating trampolines that preserve original function behavior.

pub mod allocator;
pub mod generator;

pub use allocator::ExecutableMemory;
pub use generator::TrampolineBuilder;