In WinDbg, I can do a memory search for bytes with a command s, for example.
s 0012ff40 L?2000 48 65 6c 6c 6f
There is also a way to include unknown bytes in a search sequence, for example.
s 0012ff40 L?2000 48 65 ?? ?? ?? 6c 6f
where ??is the byte with an arbitrary value?
Idea
How about running ((XOR memory 48 65 00 00 00 6c 6f) AND FF FF 00 00 00 FF FF) and compare this to 00 00 00 00 00 00 00? But I do not know how to do this in WinDbg.
source
share