frida_memory_protect
Modify memory protection of a region in a target process by specifying address, size, and protection flags like rwx or r-x.
Instructions
Change memory protection on a region.
target: process name or pid (string).
address: start address (hex string).
size: region size in bytes.
protection: protection string like 'rwx', 'r-x', 'rw-', '---'.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| target | Yes | ||
| address | Yes | ||
| size | Yes | ||
| protection | Yes |