edb_search_memory
Search memory for a byte pattern by specifying hex bytes, start address, and region size. Returns addresses where the pattern is found.
Instructions
Search memory for a byte pattern. Finds all occurrences in the specified region.
Args: params (SearchMemoryInput): Search parameters - pattern (str): Hex bytes (e.g., '0x90 0x90') - address (Optional[str]): Start address (default: $pc) - length (Optional[str]): Region size in hex (default: 0x10000)
Returns: str: Addresses where the pattern was found
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |