how to search the memory of an open process for a byte[] array
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.
精彩评论