Skip to content

Instantly share code, notes, and snippets.

@0xc010d
Created December 19, 2012 07:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 0xc010d/4335013 to your computer and use it in GitHub Desktop.
Save 0xc010d/4335013 to your computer and use it in GitHub Desktop.
Hopper's 'Rewrite with NOPs' script
code = 0x90
doc = Document.getCurrentDocument()
seg = doc.getCurrentSegment()
addr = doc.getCurrentAddress()
instr = seg.getInstructionAtAddress(addr)
last = addr + instr.getInstructionLength()
while addr < last:
seg.writeByte(addr, code)
seg.markAsCode(addr)
addr = addr + 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment