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
// All `unsafe fn` in this crate are either `extern "C"` FFI entry-points whose
// safety contracts are documented in `specter.h`, or internal helpers whose
// callers are the FFI layer above them.  A Rust `# Safety` section would
// duplicate the C-header docs without adding value.
#![allow(clippy::missing_safety_doc)]

pub mod config;
pub mod ffi;
pub mod memory;
pub mod utils;