specter/memory/allocation/mod.rs
1//! # Memory Allocation Utilities
2//!
3//! This module provides tools for allocating memory and executing code dynamically.
4//! It includes:
5//! - **Shellcode Loader**: Allocating executable pages, resolving symbols, and running raw machine code.
6//! - **Position Independent Code**: Support for relocating code that depends on absolute addresses.
7
8pub mod shellcode;