frida_file_download
Download a file from a target process's filesystem to your local machine by specifying the process name, remote path, and local path.
Instructions
Download a file from the target process's filesystem to the local host.
Attaches to the target process, reads the remote file in 1MB chunks
using ObjC NSData inside the process (respecting its sandbox view),
transfers each chunk back via Frida's binary data channel, and
reassembles the file locally at local_path.
target: process name or pid (string).
remote_path: absolute file path on the target's filesystem.
local_path: local path to write the downloaded file.
Supports large files through chunked transfer. 2-minute timeout.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| target | Yes | ||
| remote_path | Yes | ||
| local_path | Yes |