get_process_by_name
Locate running processes on mobile or desktop systems by name using Frida's dynamic instrumentation for analysis and reverse engineering tasks.
Instructions
Find a process by name.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
device_id | No | Optional ID of the device to search the process on. Uses smart selection when omitted. | |
name | Yes | The name (or part of the name) of the process to find. Case-insensitive. |
Input Schema (JSON Schema)
{
"properties": {
"device_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional ID of the device to search the process on. Uses smart selection when omitted.",
"title": "Device Id"
},
"name": {
"description": "The name (or part of the name) of the process to find. Case-insensitive.",
"title": "Name",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}