specter-mem 1.0.5

ARM64 memory manipulation framework for iOS/macOS — inline hooking, stealth code patching, hardware breakpoints, and shellcode loading
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # Memory Manipulation
//!
//! This module provides tools for modifying process memory at runtime.
//!
//! ## Features
//!
//! - **Hooks**: Intercept function calls using trampolines and code caves
//! - **Patches**: Modify code or data at specific addresses
//! - **Read/Write**: Safe abstractions for reading and writing process memory
//! - **Checksum**: Self-integrity verification for installed hooks

pub mod backup;
pub mod checksum;
pub mod hook;
pub mod patch;
pub mod rw;