I presume you mean using a script to disable certain instructions within an attached process. You can do it like so:
Code:
[ENABLE]
// Make a note of original bytes to restore.
address:
db 90
// type 90 for how many bytes you want to nop for example:
// 5 bytes would be "db 90 90 90 90 90"
[DISABLE]
address:
db 75 EB 8C 00 00
// Write original bytes back
But, STN is right, more clarification is required.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum