search_instructions
Search disassembled code for instructions by pattern, mnemonic, or group like call/jump/ret. Filters results to match specific machine code bytes or instruction types.
Instructions
Search for instructions matching a specific pattern in disassembled code.
Filter by mnemonic name or instruction group (call/jump/ret/interrupt).
Args: hex_code: Hex-encoded machine code bytes. arch: CPU architecture. Default: x86_64. base_address: Base address. Default: "0". mnemonic: Mnemonic to search for (partial match), e.g. "mov", "call", "push". group: Instruction group to filter: call, jump, ret, interrupt.
Returns: List of matching instructions.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| hex_code | Yes | ||
| arch | No | x86_64 | |
| base_address | No | 0 | |
| mnemonic | No | ||
| group | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |