search_byte_sequence
Locate specific byte sequences in a binary file using defined start and end addresses for precise reverse engineering and analysis.
Instructions
Search for a byte sequence in the binary
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bytes | Yes | Byte sequence to search for (e.g., "90 90 90" for three NOPs) | |
endAddress | No | End address for search (optional) | |
startAddress | No | Start address for search (optional) |
Input Schema (JSON Schema)
{
"properties": {
"bytes": {
"description": "Byte sequence to search for (e.g., \"90 90 90\" for three NOPs)",
"type": "string"
},
"endAddress": {
"description": "End address for search (optional)",
"type": "string"
},
"startAddress": {
"description": "Start address for search (optional)",
"type": "string"
}
},
"required": [
"bytes"
],
"type": "object"
}