Describe the bug
When using the 'Memory Search' from Search > Memory, the 'wildcard' option doesn't work as intended. It seems like it's replacing "?" with 00 instead of an actual wildcarded value.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Expected similar behavior as IDA giving any result including the 00 00 00 00 ones.
Screenshots
https://i.imgur.com/v8I4N1e.png
Environment
@nithax It seems you need to use dots . for wildcards.
e.g.:
64 A1 . . . .
Just tried "." instead of "?" and I get the same results. Definitely something wrong here
I had success with removing the spaces between the dots/questionmarks:
64 A1 ........ or 64 A1 ????????
Ah thanks @Randshot , that works.
Most helpful comment
@nithax It seems you need to use dots
.for wildcards.e.g.: