execute_command
Execute raw x64dbg commands to handle operations not covered by dedicated tools, serving as an escape hatch for advanced debugging workflows.
Instructions
Execute a raw x64dbg command. ESCAPE HATCH for operations not covered by other tools. USE SPARINGLY — prefer the dedicated tool when one exists.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| command | Yes | Raw x64dbg command. See https://help.x64dbg.com/en/latest/commands/index.html. Examples: 'log "hello"', 'cmt 0x401000, "my note"', 'StepInto 5'. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | No | Structured result data (varies by tool) | |
| error | No | ||
| details | No | Detailed text breakdown | |
| success | Yes | ||
| summary | Yes | One-line human-readable result | |
| suggested_next_tools | No | Tools recommended to call next based on this result |