disasm_capstone
Disassemble bytes from a binary section by specifying path, section name, offset, size, and max instructions. Returns a JSON list of instructions with address, mnemonic, operands, and bytes.
Instructions
Disassemble size bytes of section section_name starting at offset.
Returns a JSON list of instructions (address, mnemonic, operands, bytes). Truncates to max_insns (default 500) — call again with a different offset to see more.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | ||
| section_name | Yes | ||
| offset | No | ||
| size | No | ||
| max_insns | No |