Expand description
§Raw Padding Scanner
This module scans a slice of bytes to identify sequences of a single repeating byte value.
This is commonly used to find runs of NOPs (0x90), NULLs (0x00), or trap/INT3 (0xCC)
which can denote code caves or padding zones inside binary sections.
Functions§
- scan_
raw_ padding - Scans a byte slice for consecutive runs of
target_byteof length at leastmin_length. Returns the absolute virtual memory addresses of all bytes within the matching runs.