-
|
I want to search all mem blocks for an ascii string; I have the docs open but the examples for "find" , "findallmem" are... scarce. So , first try ,
I find this quite cryptic. I don't want a pointer, I want a string of bytes. If I wanted an address, why would I even bother specifying utf8 ? Ah, but these are formatters like C printf would use, and would i.e. 'render' data at a certain address, as UTF8. So, the opposite of what I need ? I still tried a bunch of combinations, all giving me an unhelpful |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
|
https://help.x64dbg.com/en/latest/commands/searching/findallmem.html Specifically this section (emphasis added):
The string formatting is allowed to use something like |
Beta Was this translation helpful? Give feedback.
-
|
Wow, neat. Thanks for that. Maybe something to consider including natively, maybe along with the other "string formatters" ? I mean it would be a reasonable place to look for such a thing : ) |
Beta Was this translation helpful? Give feedback.
Ah I see, that's indeed kind of an oversight/missing feature. I did a quick plugin you can use https://github.com/mrexodia/EncodeHex
{encode("Hello, world!", "utf-8")}should work:tm: