search_in_names
Locate specific names or symbols in a binary file using customizable search parameters, including pattern matching and case sensitivity, to streamline reverse engineering tasks in IDA Pro.
Instructions
Search for names/symbols in the binary
Input Schema
Name | Required | Description | Default |
---|---|---|---|
caseSensitive | No | Whether the search is case sensitive (default: false) | |
pattern | Yes | Pattern to search for in names | |
type | No | Type of names to search for (function, data, import, export, label, all) |
Input Schema (JSON Schema)
{
"properties": {
"caseSensitive": {
"description": "Whether the search is case sensitive (default: false)",
"type": "boolean"
},
"pattern": {
"description": "Pattern to search for in names",
"type": "string"
},
"type": {
"description": "Type of names to search for (function, data, import, export, label, all)",
"type": "string"
}
},
"required": [
"pattern"
],
"type": "object"
}