search_text
Locate specific text within a binary using IDA Pro's reverse engineering capabilities. Supports case-sensitive options and address range constraints for precise searches.
Instructions
Search for text in the binary
Input Schema
Name | Required | Description | Default |
---|---|---|---|
caseSensitive | No | Whether the search is case sensitive (default: false) | |
endAddress | No | End address for search (optional) | |
startAddress | No | Start address for search (optional) | |
text | Yes | Text to search for |
Input Schema (JSON Schema)
{
"properties": {
"caseSensitive": {
"description": "Whether the search is case sensitive (default: false)",
"type": "boolean"
},
"endAddress": {
"description": "End address for search (optional)",
"type": "string"
},
"startAddress": {
"description": "Start address for search (optional)",
"type": "string"
},
"text": {
"description": "Text to search for",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}