run_ida_command_filebased
Execute IDA Pro scripts (IdaPython for IDA 8.3) to perform reverse engineering and binary analysis tasks, saving output to a specified path.
Instructions
(FOR IDE USAGE) Execute an IDA Pro Script (IdaPython, Version IDA 8.3)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
outputPath | No | absolute Path to save the scripts output to | |
scriptPath | Yes | absolute Path to the script file to execute |
Input Schema (JSON Schema)
{
"properties": {
"outputPath": {
"description": "absolute Path to save the scripts output to",
"type": "string"
},
"scriptPath": {
"description": "absolute Path to the script file to execute",
"type": "string"
}
},
"required": [
"scriptPath"
],
"type": "object"
}