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
//! # Platform-Specific Operations
//!
//! This module contains low-level primitives for interacting with the operating system (iOS/macOS).
//! It handles:
//! - Mach exception handling for hardware breakpoints
//! - Thread suspension/resumption for safe memory patching
//! - Task port management

#[cfg(target_os = "ios")]
pub mod breakpoint;
pub mod thread;