开发者

how to search the memory of an open process for a byte[] array

开发者 https://www.devze.com 2023-04-13 02:11 出处:网络
is it possiblein C# to search the memory of an open process byte[] array for开发者_开发百科 a patterne.g. { 0x97, 0x35, 0x15, 0xC3, ??, 0x80, 0xE4} and return the address ? so then i can use the addre

is it possible in C# to search the memory of an open process byte[] array for开发者_开发百科 a pattern e.g. { 0x97, 0x35, 0x15, 0xC3, ??, 0x80, 0xE4} and return the address ? so then i can use the address in WriteProcessMemory


Here's a Code Project article about implementing a memory scanner in C#. Although I think you'll have to modify it a bit so you can write on the same address where you read the values.

0

精彩评论

暂无评论...
验证码 换一张
取 消