configure_remote_device
Connect to a remote Frida server to enable dynamic instrumentation of mobile and desktop applications for runtime analysis and reverse engineering.
Instructions
Connect to a remote Frida server and make it available for future requests.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The remote <host>:<port> to add. | |
alias | No | Optional alias used as device_id when targeting this remote. | |
set_as_default | No | If true, future requests without device_id will prefer this remote. |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "The remote <host>:<port> to add.",
"title": "Address",
"type": "string"
},
"alias": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional alias used as device_id when targeting this remote.",
"title": "Alias"
},
"set_as_default": {
"default": false,
"description": "If true, future requests without device_id will prefer this remote.",
"title": "Set As Default",
"type": "boolean"
}
},
"required": [
"address"
],
"type": "object"
}