Bit-Slicer icon indicating copy to clipboard operation
Bit-Slicer copied to clipboard

How to Nop the opcode and change it back to what it was before Is there any scripts (Must READ)

Open MacBytes opened this issue 6 years ago • 2 comments

I need help "Any scripts"

MacBytes avatar Oct 20 '17 20:10 MacBytes

If you have the address and number of bytes to write to for the instruction, maybe this would help:

originalBytes = debug.readBytes(ADDRESS, SIZE)
debug.writeBytes(ADDRESS, b'\x90' * SIZE) #nop instruction
#...
debug.writeBytes(ADDRESS, originalBytes) #revert nop

zorgiepoo avatar Oct 24 '17 06:10 zorgiepoo

Where can i find the size i have this screen shot 2017-10-27 at 4 33 22 pm

MacBytes avatar Oct 27 '17 13:10 MacBytes