Expand description
Pattern scanning for memory and modules
Supports multiple pattern formats:
- IDA-style:
"48 8B 05 ?? ?? ?? ?? 48 89"(wildcards as??or?) - Code-style: bytes + mask (
"\x48\x8B"with"xx??") - Raw bytes with mask array
Structs§
- Pattern
- parsed byte pattern with wildcard mask
- Pattern
Scanner - pattern scanner for byte slices (backward compatible API)
- Scan
Match - result of a pattern scan with context
- Scanner
- configurable pattern scanner
Functions§
- find_
pattern_ all_ modules - scan all loaded modules for pattern
- find_
pattern_ executable - scan all executable regions for pattern
- find_
pattern_ in_ module - find pattern in module by name
- find_
pattern_ in_ module_ first - find first pattern match in module
- find_
pattern_ in_ region - find pattern in specific memory region