spawn_process
Launch a program or application on a device for dynamic instrumentation and runtime analysis using Frida's capabilities.
Instructions
Spawn a program.
Returns:
Information about the spawned process
Input Schema
Name | Required | Description | Default |
---|---|---|---|
args | No | Optional list of arguments for the program. | |
device_id | No | Optional ID of the device where the program should be spawned. Uses smart selection when omitted. | |
program | Yes | The program or application identifier to spawn. |
Input Schema (JSON Schema)
{
"properties": {
"args": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional list of arguments for the program.",
"title": "Args"
},
"device_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional ID of the device where the program should be spawned. Uses smart selection when omitted.",
"title": "Device Id"
},
"program": {
"description": "The program or application identifier to spawn.",
"title": "Program",
"type": "string"
}
},
"required": [
"program"
],
"type": "object"
}