Hello all,
I want to check in a external process if an address X, that i'll call here $00000001 is "NOPPED", i know that an address with NOP its byte is x90, so my question is:
Can i use ReadProcessMemory putting the value x90 as the IpBuffer or do you have a better idea,
EX:
if ReadProcessMemory(hProcess, Ptr($00000001), ptr(90), 4, Written) then
ShowMessage('He is nopped');