frida_enumerate_ranges
Enumerate memory ranges of a process by protection filter (e.g., 'rwx'). Returns base address, size, protection, and backing file for each matching range.
Instructions
Enumerate memory ranges matching a protection filter.
target: process name or pid (string).
protection: filter like 'r--', 'rwx', 'r-x'. Frida matches ranges
whose protection is a superset of the specified value.
Returns base address, size, protection, and backing file (if any).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| target | Yes | ||
| protection | No | r-- |