ida_execute_script
Run Python scripts within IDA Pro's context to access its API modules, enabling direct interaction and automation for analysis tasks.
Instructions
Execute a Python script in IDA Pro and return its output. The script runs in IDA's context with access to all IDA API modules.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
script | Yes |
Input Schema (JSON Schema)
{
"properties": {
"script": {
"title": "Script",
"type": "string"
}
},
"required": [
"script"
],
"title": "ExecuteScript",
"type": "object"
}