enumerate_processes
Lists all running processes on a system with their IDs and names for monitoring and analysis using Frida's dynamic instrumentation capabilities.
Instructions
List all processes running on the system.
Returns:
A list of process information dictionaries containing:
- pid: Process ID
- name: Process name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
device_id | No | Optional ID of the device to enumerate processes from. Uses smart selection when omitted. |
Input Schema (JSON Schema)
{
"properties": {
"device_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional ID of the device to enumerate processes from. Uses smart selection when omitted.",
"title": "Device Id"
}
},
"type": "object"
}