frida_file_seek_read
Read hex-encoded bytes from a file at a specified offset on the target process filesystem. Enables extracting file content from arbitrary positions.
Instructions
Read bytes from a file at a specific offset on the target filesystem.
target: process name or pid (string).
path: file path to read.
offset: byte offset to seek to.
length: number of bytes to read (capped at 64KB).
Returns hex-encoded bytes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| target | Yes | ||
| path | Yes | ||
| offset | Yes | ||
| length | Yes |