disassemble_function
Extract and analyze the disassembly of a specific function from a binary file using Binary Ninja, enabling detailed reverse engineering and examination.
Instructions
Disassemble a function from a binary
Input Schema
Name | Required | Description | Default |
---|---|---|---|
function | Yes | ||
path | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"function": {
"minLength": 1,
"type": "string"
},
"path": {
"minLength": 1,
"type": "string"
}
},
"required": [
"path",
"function"
],
"type": "object"
}