windbg_search_memory
Search a memory range in WinDbg for byte, string, dword, or qword patterns to quickly locate specific data during debugging and reverse engineering.
Instructions
Search a memory range for a byte/string/dword/qword pattern.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| kind | No | Pattern type | bytes |
| start | Yes | Start address | |
| length | Yes | Length in cdb hex, e.g. '1000' | |
| pattern | Yes | Pattern. For bytes: '41 42 43'. For ascii/unicode: "hello" |