Open CryptXor opened 8 years ago
You can see my implementation here:
This will find most patterns as-is, but in some cases you will need to use it to find the starting address of your pattern and follow it from there.. something like
var scanResult = ..
var actualAddress = (IntPtr)memory.Read<byte>(scanResult.BaseAddress);
Hi @CryptXor,
@lolp1 is right, my initial thoughts to this feature is something like what you've mentioned.
Did you think to something different or have another idea of how this feature should behave ?
Cheers, Zen
Hi,
I assume Pattern Mechanisms are going to be things such as: Byte Search and Replace, Byte Search to return a memory address, etc, correct?