decompile_function
Convert binary functions into readable C code by specifying the binary path and function name, enabling analysis of compiled programs within the Binary Ninja environment.
Instructions
Decompile a function to C
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"
}